The URI you submitted has disallowed characters? |
[eluser]ownersbox[/eluser]
Thank you for the link. I don't think I understand how to properly use the routes if I want my link to be mydomain.com/verify/EMAIL/HASH I added this route: $route['verify/(:any)/(:any)'] = "verify/"; But I still get the 404, what part did I misunderstand? I also tried: $route['verify/(:any)'] = "verify/"; and $route['verify/(:any)'] = "verify";
[eluser]Dam1an[/eluser]
Based on the way I suggested earlier, this is the route I would use Code: $route['verify/(:any)/(:any)'] = 'account/verify/$1/$2';
[eluser]ownersbox[/eluser]
Thanks for all your help, your method worked then I ran in to another issue where a dot was being converted to an underscore and I found another thread you were part of showing me how to solve that... Thanks again http://ellislab.com/forums/viewthread/114218/#578644
[eluser]Dam1an[/eluser]
Glad its all working now ![]() (Also, it appears I appear in too many threads ![]()
[eluser]The Spider[/eluser]
Hi, What will happen if we give $config[‘permitted_uri_chars’]='' in config.php? I have to search for keywords entered in a text box. The problem is that I am getting the message "The URI you submitted has disallowed characters." whenever the keyword contain single quote, + sign etc. When I edited $config[‘permitted_uri_chars’]='', everything looks fine. Can anyone tell me, is there any problem in doing this? Thanks in advance.
[eluser]ownersbox[/eluser]
it becomes a security issue, allowing all characters would provide a way to try to execute from the url Why not add characters you need to the default setting
[eluser]Dam1an[/eluser]
I think the comment in the config files is clear enough that its not a good idea to allow all Quote:/*
[eluser]The Spider[/eluser]
Ok. Thanks. Suppose I want to add '(single quotes), "(double quotes) and + sign. How can I edit the default setting to add these? |
Welcome Guest, Not a member yet? Register Sign In |