CodeIgniter Forums
Url Problem - 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: Url Problem (/showthread.php?tid=25381)



Url Problem - El Forum - 12-10-2009

[eluser]pallavi312[/eluser]
Hello,
i have developed application using codeigniter. i have configured software "zendesk" to remote authenticate users. zendesk setting i have given return url-http://wwww.epicommtechnogies.net/mmui.


and in my application i hav one link "report trouble" on clicking this it redirect to zendesk automatic login once i logout from zendesk it redirect to me
"http://www.epicommtechnologies.net/mmui/?kind=info&message=You+have+been+logged+out." in browser but page shows me error message
"
An Error Was Encountered

The URI you submitted has disallowed characters.
"

so how to solve this problem i want to "http://www.epicommtechnologies.net/mmui/" url in browser after logout from zendesk.


Please help me to solve the issue?


Url Problem - El Forum - 12-10-2009

[eluser]Mareshal[/eluser]
First of all, start reading this:

example.com/class/function/ID

http://ellislab.com/codeigniter/user-guide/general/urls.html

2nd:
http://ellislab.com/codeigniter/user-guide/installation/upgrade_140.html

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-';

3rd:
your message can be senty using flashdata
http://ellislab.com/codeigniter/user-guide/libraries/sessions.html

good luck