2

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

Tim Meyer
  • 12,210
  • 8
  • 64
  • 97
dede
  • 823
  • 4
  • 13
  • 24

1 Answers1

2

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.

Pervaiz Iqbal
  • 316
  • 2
  • 8