500-在网络解决方案plesk上发布asp.net Web应用程序时出现内部服务器错误

时间:2018-06-21 08:36:38

标签: asp.net iis web-applications web-hosting plesk

我将asp.net项目的所有文件上传到了www.networksolutions.com的plesk中,当在网络浏览器中打开url时,此消息将会出现

“ 500-内部服务器错误。 您正在寻找的资源有问题,无法显示。”

我如何解决问题 注意:我正在尝试编辑web.config,但这没有用

这是我的web.config

<configuration>
<connectionStrings>
<add name="ContestConn" connectionString="****" />
</connectionStrings>

<system.web>
    <compilation debug="true" targetFramework="4.0">
        <assemblies>
            <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, 
     PublicKeyToken=B03F5F7F11D50A3A"/>
            <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, 
    Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add assembly="System.Windows.Forms, Version=4.0.0.0, 
    Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies> 
    </compilation>


    <customErrors mode="Off"/>
    <compilation debug="true"/>

    </system.web>

    <system.webServer>
    <httpErrors errorMode="Detailed" />
    <asp scriptErrorSentToBrowser="true"/>
    <validation validateIntegratedModeConfiguration="false" />
    <defaultDocument>
    <files>
    <add value="index.aspx" />
    </files>
    </defaultDocument>
    </system.webServer>

    </configuration>

1 个答案:

答案 0 :(得分:0)

您可以在这里做2件事。

  1. 在发布期间检查事件日志。如果是应用程序问题,则将在此处列出例外。

  2. 启用网站的Freb日志和500状态代码。您可以按照this文章启用FREB

请在此处共享FREB日志的结果。我可以根据FREB捕获的内容提供更多见解。