![]() |
The URI you submitted has disallowed characters, but only if you are using google chrome. - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: The URI you submitted has disallowed characters, but only if you are using google chrome. (/showthread.php?tid=44364) |
The URI you submitted has disallowed characters, but only if you are using google chrome. - El Forum - 08-12-2011 [eluser]Loupax[/eluser] Here is the deal: In my app, I created a controller that accepts data in the following format: BaseUrl/Controller/Function/data1[seperator]data2 (WITH the brackets) When I was running it on firefox it was all good and well, but when I run my app on chrome, it gave me a "The URI you submitted has disallowed characters."... I went to the config.php to find out the [ and ] characters are dissalowed... I changed the line to $config['permitted_uri_chars'] = '[]][[]a-z 0-9~%.:_\-'; and everything works the way it was supposed to... That's it, more like a bug report I guess than a question... |