Welcome Guest, Not a member yet? Register   Sign In
Help me config url
#2

[eluser]Avatar[/eluser]
place a backtick before any added chars on to the originals that you want to be excepted, only way I could make it work
Code:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-`!@=+;';//this will allow you to accept these extra chars in the url
note you may also need to modify your charset in config to that proper encoding:
Code:
$config['charset'] = "UTF-8";//change to your encoding
I would try something along those lines, Also If they don't store in DB correctly try to change these DB settings to the proper encoding:
Code:
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
//$db['default']['char_set'] = "latin1";
//$db['default']['dbcollat'] = "latin1_swedish_ci";


Messages In This Thread
Help me config url - by El Forum - 03-09-2008, 09:59 PM
Help me config url - by El Forum - 03-09-2008, 10:13 PM
Help me config url - by El Forum - 03-09-2008, 10:48 PM
Help me config url - by El Forum - 03-10-2008, 12:52 AM
Help me config url - by El Forum - 03-10-2008, 02:49 AM
Help me config url - by El Forum - 03-10-2008, 02:54 AM
Help me config url - by El Forum - 03-10-2008, 03:48 AM
Help me config url - by El Forum - 08-27-2008, 04:41 AM



Theme © iAndrew 2016 - Forum software by © MyBB