Possible Duplicate:
CodeIgniter Disallowed Key Characters
I recently upgraded CI from 1.7 to 2.0. There after i started receiving CI's
Disallowed Key Characters
error.
I then allowed all characters to be accepted to see if the error would disappear.
$config['permitted_uri_chars'] = '';
However, this did not change anything
i also have enabled query strings
$config['enable_query_strings'] = TRUE;
I just don't know why i am getting the disallowed characters error when i am allowing all characters to be accepted.
Here is a url example where i would get the disallowed key characters error:
http://localhost/myapp/index.php??c=user&m=login
However, if i were to remove one of the '?' it works
http://localhost/myapp/index.php?c=user&m=login
I do have an htaccess file that contains:
RewriteEngine on
RewriteRule (.*)/index.php $1/ [L]
any help?