Admin-Ahead Community

Windows => Control Panels => WebsitePanel => Topic started by: sajugovind on January 11, 2014, 05:28:45 pm

Title: Enable Detailed Errors from backend - WebsitePanel
Post by: sajugovind on January 11, 2014, 05:28:45 pm
On Windows Server 2008 (DotNetPanel/WebsitePanel) Windows Hosting, you might got the Error 500 Internal Server Error show but do not have detailed error.

To overcome this issue, you may done some scripting from your web.config file.

1. Open your web.config file.
2. Add the following line before </system.webServer> tag.

<httpErrors errorMode="Detailed" />

Eg,

Code: [Select]
....
<httpErrors errorMode="Detailed"/>
 </system.webServer>
 </configuration>

3. Save it.