Reputation: 2551
I have completed a project in CodeIgniter. It was working perfectly with my localhost. When I uploaded it to my Web Server, one of the Controllers always show '500 Internal Server Error'.
I went through several questions in this website, everyone says about .htaccess files, but I have not added any .htaccess files.
Secondly, it was found that one of my libraries (extending Form_Validation) was also being not loaded in the webserver, despite working in the localhost.
Please help.
Upvotes: 0
Views: 1107
Reputation: 96
What are your local and server operating system?
Probably if you use Windows localy and you use linux on server you have difference in case sensitive in some file name.
Windows is not case sensitive.
Check if you have capital letter in your Controller names. For example you shouldn't use nameOfYourController.php but nameofyourController.php.
Upvotes: 1