Disallowed characters |
[eluser]Chris Williams[/eluser]
I'm using FeedBurner for RSS. It puts a bunch of query stings at the end of my URL. On my live site I get this error: Quote:An Error Was Encountered However, on my dev server, It works just fine. I'm trying to figure the difference and I'm stumped. Both my config files are the same. Code: $config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; Has anyone here experience something similar? What's your workaround? Thanks!
[eluser]Chris Williams[/eluser]
To add more detail, I've noticed that when I enable Query Strings, I get routed incorrectly. Which further searching points me to a forum post about a potential similar problem here. Instead of being routed here: Code: $route['(:any)/function/(:any)'] = "controller/function/$1/$2"; It's going here. Code: $route['(:any)/function'] = "controller/function/$1";
[eluser]Chris Williams[/eluser]
Solved. Changed config from this Code: $config['uri_protocol'] = 'AUTO'; Code: $config['uri_protocol'] = 'REQUEST_URI'; |
Welcome Guest, Not a member yet? Register Sign In |