I've just deployed an update to an existing ASP.NET MVC3 site (it was already configured) and I'm getting the IIS blue screen of death stating
HTTP Error 500.0 - Internal Server Error
The page cannot be displayed because an internal server error has occurred.
However; there is nothing showing up in the Application Event Log where I would expect to see a (more) detailed description of the entry.
How can I go about diagnosing this issue?
Take a look at IIS7's Failed Request Tracing feature:
The other thing I would do is tweak your
<httpErrors>
setting because IIS may be swallowing an error message from further up the pipeline:If the site is written in Classic ASP then be sure to turn on the Send Errors to Browser setting in the ASP configuration feature:
And finally, if you're using Internet Explorer then make sure you've turned off Show friendly HTTP error messages in the Advanced settings (though I suspect you've done that already or are using a different browser).
In my case:
web.config
wasn't corrupt - verified by using same on local machine / usinginetmgr
Finally...
...Chrome/57.0.2987.133+Safari/537.36 500 19 5 312
The key being:
sc-status sc-substatus sc-win32-status 500 19 5
which with some googling pointed me to the
IIS_USRS
not having read permissions to thewww
folderThe most obvious issue is improper or zero NTFS rights on the web application folder. So make sure the account serving the site has the right permissions. Without proper NTFS rights to the web directory it doesn't matter what you put in the web.config as it will never be read.
A quick check can be to give everyone full rights - if the site starts working then you know it's a rights problem and you can then set about assigning appropriate rights to a more appropriate account.
If upgrading from IIS6, then it may be one of the the web.config works on 6, but not in IIS 7.5 ... Double click on all the icons in IIS for the website and you may get an error about the format (Section must be below other section...)
I had the same problem with an Azure Web App. While debugging locally, error messages (JSON) returned from ajax calls were fully returned to the browser. But once deploy to the Web App, the messages were swallowed and i was returned a default 500 error message. So I had to explicitly set the
existingResponse
value toPassThrough
in the web.confighttpErrors
tag.I ran in this issue many times. 500 error from a ASP.NET 4.x website. No details in the eventLog and even the tracing above didn't help. In my case it was caused by the fact that the web.config contains rewrite rules. So check your web.config if it has something like:
If it does, you need to install iis rewrite module:
https://www.iis.net/downloads/microsoft/url-rewrite