What is CodeIgniter?
CodeIgniter redefined web applications. This PHP framework was developed by Ellis lab which was praised by PHP creator as the least like a framework. CodeIgniter framework designed with hypertext preprocessor PHP with a very small footprint is used for developing quality websites. The open source software with rapid development PHP framework released in 2006 is faster and lighter compared to the other frameworks. Licensed by MIT it is also highly rated by Google. The founders Ellis Lab for the successful running of the framework took the stewardship of the British Columbia Institute of technology who became the new developers since 2014.
URI can only contain following:
To rectify this error go to page 129 of application/config/config.php file where you have to change the following $config { ‘permitted_uri_chars' } by adding a comma and save the file and refresh the browser. This will solve the issue but strictly to be done only understanding the repercussions. This could also be done with adding # before.
The most important thing to solve this error is to identify the character to be included in the array of the URI string.
CodeIgniter redefined web applications. This PHP framework was developed by Ellis lab which was praised by PHP creator as the least like a framework. CodeIgniter framework designed with hypertext preprocessor PHP with a very small footprint is used for developing quality websites. The open source software with rapid development PHP framework released in 2006 is faster and lighter compared to the other frameworks. Licensed by MIT it is also highly rated by Google. The founders Ellis Lab for the successful running of the framework took the stewardship of the British Columbia Institute of technology who became the new developers since 2014.
- MVC Pattern :
- CodeIgniter Controller :
- Why we are getting this error?
URI can only contain following:
Code:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
- How to solve this error?
Code:
$config { ‘permitted_uri_chars' } = ‘a-z 0-9~%.:\_\=+%\&';
Code:
#$config { ‘permitted_uri_chars' }.
- CI htaccess File :