CodeIgniter Forums
Random Internal Server Error? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Random Internal Server Error? (/showthread.php?tid=48339)



Random Internal Server Error? - El Forum - 01-12-2012

[eluser]Unknown[/eluser]
I moved my CI-site to a new host,and everything seemed to work fine. But after a while I discovered that sometimes when do some clicks visiting my site, an Internal Server Error Appears. When I wait for a while and then refresh the page the error disappears. It seems to be at random: is is not a particular section or button that is failing, and sometimes the site is working fine for a while.

Does it have to do with the htacces file?

Does anybody have a suggestion?
thanks
Wouter

this is my htaccess file:

RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]