Hello 
I have a bug with smileys on my installation, and begin to think I have a problem with URL or URL rewriting.
You can check my forum here: http://supra-mk3.club
Smiley problem
When the smileys
:D :) etc..
are posted, the posted message won't point to the good URL, but will in preview:

http://supra-mk3.club/index.php?u=/sites/default/assets/img/smileys/bigsmile.gif
instead of
http://supra-mk3.club/sites/default/assets/img/smileys/bigsmile.gif
I may have broke something, because for older posts it's working:

URLs
Also, for cleanURL, when I've previously talked here with @nguoianphu , he answered:
Your word système becomes syst-amp-egrave-me. I afraid that you have to edit his file for your French language. 
codoforum\sys\CODOF\Filter.php
I don't know why it doesn't work althought the Filter.php has this:
'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e'
You may ask @adesh1414127033 for help. I had to replace the Filter.php with another one for my Vietnamese language.
Here is my .htaccess:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
Options +Indexes
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php?u=/$1 [NC,L,QSA]
</IfModule>
AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
<IfModule mod_deflate.c>
<FilesMatch ".(js|css|html|php|txt)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
Here are my modifications in constant.php:
define('CODO_DEBUG', 0);
define('DISPLAY_ERRORS', 'ON');
define('MODE', 'PRODUCTION'); //Can be DEVELOPMENT or PRODUCTION
define('SEF', 1); //Search engine freindly urls , 1=> enable , 0=> disable
define('LOCALE', 'fr_FR');
Am I doing something wrong?
Please help,
Reynald
Hello :)
I have a bug with smileys on my installation, and begin to think I have a problem with URL or URL rewriting.
You can check my forum here: http://supra-mk3.club
##Smiley problem
When the smileys
````
:D :) etc..
````
are posted, the posted message won't point to the good URL, but will in preview:

````
http://supra-mk3.club/index.php?u=/sites/default/assets/img/smileys/bigsmile.gif
````
instead of
````
http://supra-mk3.club/sites/default/assets/img/smileys/bigsmile.gif
````
I may have broke something, because for older posts it's working:

### URLs
Also, for cleanURL, when I've previously talked [here](http://codologic.com/forum/index.php?u=/topic/4238/tables-in-post-using-markdown/1#post-11166) with @nguoianphu , he answered:
&gt;Your word ```syst&egrave;me ``` becomes ```syst-amp-egrave-me ```. I afraid that you have to edit his file for your French language. |(
&gt;``` codoforum\sys\CODOF\Filter.php ```
&gt;I don't know why it doesn't work althought the ```Filter.php``` has this:
&gt;```'&egrave;' =&gt; 'e', '&eacute;' =&gt; 'e', '&ecirc;' =&gt; 'e', '&euml;' =&gt; 'e' ```
&gt;You may ask @adesh1414127033 for help. I had to replace the Filter.php with another one for my Vietnamese language.
Here is my .htaccess:
````
&lt;IfModule mod_rewrite.c&gt;
Options +FollowSymlinks
Options +Indexes
RewriteEngine on
# if your app is in a subfolder
#RewriteBase /my_app/
# test string is a valid files
RewriteCond %{SCRIPT_FILENAME} !-f
# test string is a valid directory
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php?u=/$1 [NC,L,QSA]
# with QSA flag (query string append),
# forces the rewrite engine to append a query string part of the
# substitution string to the existing string, instead of replacing it.
&lt;/IfModule&gt;
AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
&lt;IfModule mod_deflate.c&gt;
&lt;FilesMatch ".(js|css|html|php|txt)$"&gt;
SetOutputFilter DEFLATE
&lt;/FilesMatch&gt;
&lt;/IfModule&gt;
````
Here are my modifications in constant.php:
````
define('CODO_DEBUG', 0);
define('DISPLAY_ERRORS', 'ON');
define('MODE', 'PRODUCTION'); //Can be DEVELOPMENT or PRODUCTION
define('SEF', 1); //Search engine freindly urls , 1=&gt; enable , 0=&gt; disable
define('LOCALE', 'fr_FR');
````
Am I doing something wrong?
Please help,
Reynald