Sajo Jacob

I am back blogging, almost 2 years after I decided to abandon my good ol C/C++ blog, so here goes my ramblings...
in

August 2008 - Posts

Sharepoint Debugging with WSS V3

 

SharePoint debugging experience in WSS V3 can get annoying, when exceptions start looking like this generic message "An unexpected error has occurred"

 

DebugTrace

 

To enable stack trace similar to the ASP.NET error page, edit your web.config at C:\Inetpub\wwwroot\wss\VirtualDirectories and edit the following entries as follows:

 

<SafeMode CallStack="true"> <!--default is false-->


<
customErrors mode="Off" /> <!--default is On-->

 

 

and there you are...go fix it now! ;)


 

NiceStackTrace