- Enable Custom Errors: Set the customErrors mode to "Off"
<system.web>
<customErrors mode="On" />
Change To:
<system.web>
<customErrors mode="Off" />
- Enable the Call Stack Trace: Set the CallStack value of the SafeMode element to "true"
<SharePoint>
<SafeMode ... CallStack="false" ... >
</SharePoint>
Change To:
<SharePoint>
<SafeMode ... CallStack="true" ... >
</SharePoint>
- Enable Debugging Mode: Set batch and debug to "true"
Find: <compilation batch="false" debug="false">
Change To: <compilation batch="true" debug="true">
- Enable the ASP.NET tracing feature:
Include the following line in the <system.web> element of the web.config file.
<system.web>
<trace enabled="true" pageOutput="true"/>
…….
<system.web>
Comments
Post a Comment