Skip to content

Instantly share code, notes, and snippets.

@raecoo
Created February 13, 2012 09:16
Show Gist options
  • Save raecoo/1815373 to your computer and use it in GitHub Desktop.
Save raecoo/1815373 to your computer and use it in GitHub Desktop.
enalbe the debug stack for IIS server
# modify the CallStack="true", <customErrors mode="Off" /> and <compilation debug="true"> in web.config file.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configuration>
...
<SharePoint>
<SafeMode MaxControls="200"
CallStack="true"
DirectFileDependencies="10"
TotalFileDependencies="50"
AllowPageLevelTrace="false">
...
</SafeMode>
...
</SharePoint>
<system.web>
...
<customErrors mode="Off" />
...
<compilation debug="true">
...
</compilation>
...
</system.web>
...
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment