Admin-Ahead Community

Windows => General Windows => Topic started by: Jithin on November 08, 2013, 08:18:04 pm

Title: Enable Detailed Error in Windows
Post by: Jithin on November 08, 2013, 08:18:04 pm
Hi Guys,

Sometimes you may get 500 error in Windows and there won't be that much in log files. In these situations, we can follow the below mentioned steps to enable Detailed Error.

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

<httpErrors errorMode="Detailed" />

Eg,

....
<httpErrors errorMode="Detailed"/>
</system.webServer>
</configuration>

3. Save it.

Give it a try next time.