- On the web server, navigate to the site directory (probably something like: C:\Inetpub\wwwroot\wss\VirtualDirectories\80 )
- Open the web.config file in Notepad
- Search for the safemode node with the word "CallStack" and change the CallStack status to true
<SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false"> - Search for the CustomErrors node and set the mode to Off
<customErrors mode="Off" /> - Save and close.
So what to do if you update web.config and you still can't see detailed error messages?
The problem is that you're probably running into the error in the _layouts subfolder. In that case the solution is easy:
The problem is that you're probably running into the error in the _layouts subfolder. In that case the solution is easy:
- On the web server, navigate to the c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS folder
- Open the web.config file in Notepad
- Search for the CustomErrors node and set the mode to Off
<customErrors mode="Off" /> - Save and close.
Hope this helps,
David
Nice post . You saved my time, Thanks David
ReplyDeleteThanks.
ReplyDeleteliterally, 8 months I've been blindly developing on my SharePoint platform. How I didn't find this post then, I don't know. Thanks a million.
ReplyDeleteThanks David ..That's Helpful..
ReplyDeleteThanks a lot, saved a lot of work.
ReplyDelete