On Windows 2008 (DotNetPanel) hosting, I get a 500 error page and the detailed error is not shown. How to I display the error?
Edit the web.config file in your DOMAIN/wwwroot folder.
After </handlers> press enter and add the following line
<httpErrors errorMode="Detailed"/>
it should now look like:
</handlers>
<httpErrors errorMode="Detailed"/>
</system.webServer>
</configuration>
Save this file, this will now show 500 errors.
Article ID: 732, Created: 6/23/2009 at 5:15 PM, Modified: 6/14/2010 at 8:51 AM