且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Sharepoint 2013运行时错误:“/”应用程序中的服务器错误。

更新时间:2023-10-22 23:39:16

要查看SharePoint错误的详细信息,我通常会检查以下3个web.config文件: 

to see details of the SharePoint errors I normally check the following 3 web.config files: 


  • \14\TEMPLATE \LAYOUTS\web .config
  • \14\TEMPLATE\ADMIN\web.config
  • Web应用程序web.config文件:  C:\inetpub \ www.root \ wss \ VirtualDirectories \ ...

您应该:


  • < customErrors mode = &QUOT;关&QUOT; />
  • CallStack =" true"
  • < compilation batch =" true"调试= QUOT;真&QUOT; optimizeCompilations =" true">

在您的情况下,由于您无权访问这些web.config文件(?!),我不知道怎么做。

In your case, since you don't have access to those web.config files (?!), I don't know how to do it.

Octavian