500错误代码内部服务器错误

时间:2017-02-23 10:27:02

标签: asp.net-mvc-4

我最近在一个webhost服务器上托管了一个asp.net mvc4网站,在部署之前一切正常,包括远程数据库连接,但在将发布的文件移动到托管服务器后,我无法远程浏览网站。我得到一个500内部服务器错误(您正在寻找的资源有问题,它无法显示。)我已经审查了我的web.config文件,但我找不到任何东西。联系我的托管服务提供商后,我被要求添加

     <modules runAllManagedModulesForAllRequests="true"/>,

我这样做但仍然得到同样的错误。拜托,伙计们,我需要你的帮助。谢谢

这是我的web.config xml文件的代码snipet。

    <?xml version="1.0" encoding="utf-8"?>
    <!--

    -->
    <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="MyConnectionString" connectionString="Data Source=mssql.mydomain.com,port;initial catalog=MyDB;persist security info=True;user id=UserID;password=Password;MultipleActiveResultSets=True;App=EntityFramework"
  providerName="System.Data.SqlClient" />
  </connectionStrings>


  <appSettings>
  <add key="webpages:Version" value="3.0.0.0" />
  <add key="webpages:Enabled" value="false" />
  <add key="ClientValidationEnabled" value="true" />
  <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>



 <system.web>
 <authentication mode="None" />
 <compilation  targetFramework="4.5" />
 <httpRuntime targetFramework="4.5" />

 </system.web>
 <system.webServer>

 <customErrors mode="Off"/>
 <modules runAllManagedModulesForAllRequests="true"/>

 </system.webServer>
 <runtime>
 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  </dependentAssembly>
  </assemblyBinding>
  </runtime>
  <entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
    <parameters>
    <parameter value="v11.0" />
    </parameters>
    </defaultConnectionFactory>
    <providers>
    <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
    </entityFramework>
    </configuration>

0 个答案:

没有答案