I'm having this error "Disallowed Key Characters." I have try to resolve this, by debugging input.php file. I have this output as
Disallowed Key Characters.2548_don't
can anyone tell me, how to escape single quote
Thanks
I'm having this error "Disallowed Key Characters." I have try to resolve this, by debugging input.php file. I have this output as
Disallowed Key Characters.2548_don't
can anyone tell me, how to escape single quote
Thanks
Try This
Go to application -> config -> config.php
And try to find
$config['permitted_uri_chars']
change it to
$config['permitted_uri_chars'] = '\#';
this # will allow all the characters.
if ( ! preg_match("/^[a-z0-9':_\/-]+$/i", $str))
{
exit('Disallowed Key Characters.'.$str);
}
added single quote in preg match and it is working now
Thanks