I have a similar and possibly related problem, in that Mint successfully tracks pages with special characters, but strips out the offending character when reporting the data.
I use a forward slash “/” as my page and section delimiter and use a plus symbol “+” in between page titles or phrases. The slashes get recorded correctly, but all of the plus symbols get stripped out.
Consider the following page title: Packages + Prices / Site Name, which when recorded and displayed by Mint would end up being Packages Prices / Site Name (notice the missing + symbol).
Is there an overzealous regular expression in Mint or something I can put into Apache’s .htaccess to properly report the page titles with the plus symbols?
A copy of my .htaccess file in Mint’s directory is below:
# Disables mod_rewrite
RewriteEngine Off
# Disables Aggressive mod_security Settings
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
SecFilterCheckURLEncoding Off
</IfModule>
I’m running Mint 2.17 with PHP 5.2.6 on a Media Temple (dv) 3.0 server and have mod_rewrite and mod_security.c disabled via .htaccess in the Mint directory.
Any help, insight or clarification is greatly appreciated. Thanks!