I've set
<system.web>
<customErrors mode="Off" />
</system.web>
in my web.config file, but i'm still getting 'unknown error' instead of the stacktrace on my pages. How can I view the stacktrace?
|
I've set
in my web.config file, but i'm still getting 'unknown error' instead of the stacktrace on my pages. How can I view the stacktrace? |
|||
|
|
|
If you're getting this error on sharepoint/wss specific pages, you also have to add following fragment to your web.config to view the stacktrace:
You can define a specific path in the PageParserPaths element, but this is optional. Don't forget to turn off the custom errors after you found the problem (certainly for a public facing site). |
|||||
|
|
The full range of things to do is listed on this page: http://blogs.prexens.com/Lists/Posts/Post.aspx?List=7a299699-f8da-4559-920c-bda481608691&ID=8 You need to also set CallStack to true in the SafeMode node to see the CallStack you require. |
|||
|
|
|
Try setting
|
|||
|
|