代码改变世界

Sharepoint2013:在页面上显示错误信息

2015-06-08 14:37  Mike.Jiang  阅读(582)  评论(0编辑  收藏  举报

在sharepoint2013中我们需要修改以下三处的web.config,以显示错误信息

1, C:\inetpub\wwwroot\wss\VirtualDirectories\端口号\web.config

1>将customErrors元素中的mode将成Off

<customErrors mode="Off" />

2>将SafeMode中的CallStack改成True

<SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="250" AllowPageLevelTrace="false">
      <PageParserPaths>
      </PageParserPaths>
</SafeMode>

3>,将compliation 中的debug改成 true

<compilation batch="false" debug="true">

 

2  C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\ADMIN\web.config

将customErrors 中的mode改成Off

<customErrors mode="Off" />

3  C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\web.config

将customErrors 中的mode改成Off

<compilation batch="false" />