dede
dede

Reputation: 831

CodeIgniter : Disallowed key Characters in Chrome

I'm using CodeIgniter and I'm getting the following error:

Disallowed Key Characters.

This only happens in Chrome. I've tried it in Firefox and it is working well. I don't use cookies, character #, or method "get".

I need help how to solve this.

Thanks

Upvotes: 2

Views: 5324

Answers (1)

Pervaiz Iqbal
Pervaiz Iqbal

Reputation: 326

To allow the character # just add it in the following in your CONFIG file -

$config['permitted_uri_chars'] = '\#';

And now the character # will be allowed.

Upvotes: 2

Related Questions