Friday, April 29, 2011

How To Repair A Torn Couch

also off Discovering unexpected error SharePoint 2007

This error message is handled by SharePoint, so you have to change settings at the Web application's Web.config where the error is reported to see some detail of origin.

image

To this place the following lines into the Web.Config are CallStack, customErrors and Debug.

\u0026lt;SafeMode MaxControls="200" CallStack="false" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">

\u0026lt;customErrors mode = "On" />

\u0026lt;compilation batch="false" debug="false">

The values \u200b\u200bthat must change are true to CallStack, Off to customErrors and true to debug, as shown below:

\u0026lt;SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">

\u0026lt;customErrors mode="Off" />

batch="false" \u0026lt;compilation debug="true">

Finally you must save the changes and ensure that the change took line restart IIS command: iisreset

/ noforce.

then reload the page and it still shows the error press Ctrl + F5 to clear the browser cache.

SharePoint4Fun!, Manolo Herrera

No comments:

Post a Comment