We've recently deployed an application to a Windows 2012 R2 Server running IIS8 production box that isn't rendering css or image files up to the browser.
It renders fine in development and validation, however when we put it into production we get an error (Firebug and Fiddler) of:
NetworkError: 500 Internal Server Error - http://website/app/masterpage.css
I've been searching the web to try and find similar issues and it seems that in order to drill down into this error, I might need to find an HRESULT code, however I cannot determine where this code would be found.
We've looked in the Windows EventViewer, however do not see any 500 Errors there for IIS and cannot see any HRESULT codes in Fiddler or Firebug.
I guess the other option would be to turn on FailedRequestTracing in IIS 8
I would find it hard to believe that a CSS file would cause an error like this to occur, which leads me to think that there is something going on outside of that (within the application itself). Do you have any other error logs available? Or have you tried
configuring the customErrors within your web.config to possible serve the full error messages on your deployed site?
Member
67 Points
864 Posts
NetworkError: 500 Internal Server Error
Aug 17, 2015 12:41 PM|drdexter33|LINK
Hello.
We've recently deployed an application to a Windows 2012 R2 Server running IIS8 production box that isn't rendering css or image files up to the browser.
It renders fine in development and validation, however when we put it into production we get an error (Firebug and Fiddler) of:
The IIS log entry looks like this:
I've been searching the web to try and find similar issues and it seems that in order to drill down into this error, I might need to find an HRESULT code, however I cannot determine where this code would be found.
We've looked in the Windows EventViewer, however do not see any 500 Errors there for IIS and cannot see any HRESULT codes in Fiddler or Firebug.
I guess the other option would be to turn on FailedRequestTracing in IIS 8
Thanks for any guidance on this issue.
All-Star
114593 Points
18503 Posts
MVP
Re: NetworkError: 500 Internal Server Error
Aug 17, 2015 06:51 PM|Rion Williams|LINK
I would find it hard to believe that a CSS file would cause an error like this to occur, which leads me to think that there is something going on outside of that (within the application itself). Do you have any other error logs available? Or have you tried configuring the customErrors within your web.config to possible serve the full error messages on your deployed site?
Member
67 Points
864 Posts
Re: NetworkError: 500 Internal Server Error
Aug 18, 2015 09:25 AM|drdexter33|LINK
We received a response from SO which solved our problem.
http://stackoverflow.com/questions/32055700/networkerror-500-internal-server-error-500-19-183-0
Thanks for your help.