This is a rehash of info that’s already all over the web – but for me to find quickly I’ll repeat:
To enable debugging in WSS 3.0 update C:\Inetpub\wwwroot\wss\VirtualDirectories\80\web.config so that these attributes are set as seen below.
<configuration> <SharePoint> <SafeMode CallStack="true"> </SharePoint> <system.web> <customErrors mode="Off" /> <compilation batch="true" debug="true"> </system.web> </configuration>
DO NOT REPLACE YOUR WEB.CONFIG WITH THE ABOVE FILE. Simply change the attributes in your file to match the ones listed above.
[...] 15 02 2008 Last time I covered how to show full debugging information in WSS by editing the web.config. That’s a great tip to easily peer into WSS, but it’s no step [...]