Reputation: 18855
I have just deployed my CodeIgniter application on to a live Windows ISS7 server, tried to access my root page and all I am getting is blank white. Firebug is telling me it's a '500 Internal Server Error'.
The site worked fine on my development server (linux).
When I echo 'hello' in index.php it displays the text, which suggests the server won't load the controllers.
I have no experience using Windows servers unfortunately, and it's not my choice to use it! How can I access some sort of error log?
Any ideas on how I can at least see what the issue is?
Upvotes: 2
Views: 3765
Reputation: 18855
ANSWER
Sorry, this is ridiculous. I had PHP errors switched off, thanks to adrien for the inspiration to look at the PHP info.
The error was an SVN conflict which had written < < < mine etc in my database file.
Sorry, such a simple error. Thanks.
Upvotes: 1
Reputation: 4439
Use the following line to find where the php error log file is located :
phpinfo();
Upvotes: 2