部署网站时“web.config”文件出错

时间:2016-09-08 17:00:29

标签: c# .net asp.net-mvc

我已经开发了一个网站,它在本地工作,但是当我把它放到网上时我遇到了错误。

错误是:

 Server Error in '/' Application.

Configuration Error 
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: This configuration section cannot be used at this path.  This happens when the site administrator has locked access to this section using <location allowOverride="false"> from an inherited configuration file.

Source Error:     
An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

我的web.config文件是:

<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
  </configSections>
  <connectionStrings>
    <add name="MyEntities" connectionString="metadata=res://*/MyModel.csdl|res://*/MyModel.ssdl|res://*/MyModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=XXXXX;initial catalog=XXXXX;User Id=XXXXX;Password=XXXXXXX;Integrated Security=false;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
  </connectionStrings>
    <system.web> 
    <securityPolicy>
        <trustLevel name="Full" policyFile="internal"/>
    </securityPolicy>
    <customErrors mode="Off" />
    <compilation debug="false" defaultLanguage="c#" targetFramework="4.5.2"/>
    <httpRuntime targetFramework="4.5.2"/>
  </system.web>
  <system.webServer>  
    <security>
   <authorization>
    <add accessType="Allow" users="*" />
  </authorization>
  </security>
    <modules>
      <remove name="FormsAuthentication"/>
    </modules>
  </system.webServer>
</configuration>

有没有人可以提供帮助,我真的不明白这个错误, THX

0 个答案:

没有答案