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
Post a Comment