codeigniter - Adding characters to $config[permitted_uri_chars] -


i think need add several characters $config[permitted_uri_chars] don't know 1 causing issue , how place character. when access page:

an error encountered  uri submitted has disallowed characters. 

this address:

http://localhost/ci_bootstrap/index.php/home/edit_user/1'%7d 

and $config:

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; 

can noob? thank you.

you did not allow ' in $config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; have include it:

$config['permitted_uri_chars'] = "a-z 0-9~%.:_'\-"; 

Comments

Popular posts from this blog

php - How to add and update images or image url in Volusion using Volusion API -

javascript - jQuery UI Splitter/Resizable for unlimited amount of columns -

javascript - IE9 error '$'is not defined -