如何将我的asp.net mdf上传到godaddy的SQL Server中,以便我的网站有效?

时间:2017-04-08 04:09:42

标签: asp.net sql-server web-hosting

我一直试图在godaddy上传我的asp.net应用程序,现在已经持续了3周。我已经用web.config解决了所有类型的噩梦,我终于得到了该死的东西至少出现了。但是所有调用数据库信息的页面都会崩溃。我将简要介绍一下我用来使它在当前级别工作的步骤,以防我错过了我怀疑是当前问题的任何内容,这是godaddy数据库中没有数据库信息。

要将这个怪物上传到godaddy我(使用本指南以及许多其他人http://www.c-sharpcorner.com/article/how-to-host-your-asp-net-mvc-website-on-godaddy-server/

  1. 通过本地发布然后压缩,然后上传到godaddy中的网站的根目录来上传我的网络应用程序。然后在文件管理器中提取到该目录(而不是使用ftp)

  2. 确保我的发布(在步骤1中)与所有dll和程序集一起发布(bin已部署)

  3. web.config完全信任级别配置,自定义错误模式设置

  4. 在goddaddy上创建一个SQL Server数据库,并在web.config中输入连接字符串(我知道该字符串有效,因为我在Visual Studio中测试了连接)。

  5. web.config我删除了system.codedom之间的所有内容(该网站在此步骤之前甚至没有显示)。

  6. 如果有人有兴趣,这是我的web.config

    <?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="DefaultConnection" 
                 connectionString="Data Source= (LocalDb)\MSSQLLocalDB;AttachDbFilename=&quot;|DataDirectory|\aspnet-BA Portal- 20170128030249.mdf&quot;;Initial Catalog=&quot;aspnet-BA Portal-  20170128030249&quot;;Integrated Security=True"   
                 providerName="System.Data.SqlClient" />
            <add name="SampleConnectionString" 
                 connectionString="Data Source= (LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Sample.mdf;Integrated  Security=True" 
                 providerName="System.Data.SqlClient" />
            <add name="my_banaturalportal" 
                 connectionString="Data Source=184.168.194.53;Integrated Security=False;database=my_banaturalportal;User ID=my_banaturalportal_user;Password=*******;Connect Timeout=1500;" />
        </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>
            <customErrors mode="Off" />
            <trust level="Full" />
            <authentication mode="None" />
            <compilation targetFramework="4.5.2" defaultLanguage="c#" />
            <httpRuntime targetFramework="4.5.2" />
            <httpModules> 
                <add name="ApplicationInsightsWebTracking"   type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule,  Microsoft.AI.Web" />
            </httpModules>
        </system.web>
        <system.webServer>
            <modules>
                 <remove name="FormsAuthentication" />
                 <remove name="ApplicationInsightsWebTracking" />
                 <add name="ApplicationInsightsWebTracking" 
                      type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
            </modules>
            <validation validateIntegratedModeConfiguration="false" />
        </system.webServer>
        <runtime>
            <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
                <dependentAssembly>
                    <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" />
                        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" 
                                         newVersion="3.0.1.0" />
                </dependentAssembly>
                <dependentAssembly>
                    <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
                        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" 
                                         newVersion="3.0.1.0" />
                </dependentAssembly>
                <dependentAssembly>
                    <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
                        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0"  
                                         newVersion="3.0.1.0" />
                </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
      </dependentAssembly>
      <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="0.0.0.0-5.2.3.0" newVersion="5.2.3.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="itextsharp" publicKeyToken="8354ae6d2174ddca" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.5.10.0" newVersion="5.5.10.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="itextsharp.xmlworker" publicKeyToken="8354ae6d2174ddca" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.5.10.0" newVersion="5.5.10.0" />
              </dependentAssembly>
            </assemblyBinding>
        </runtime>
        <entityFramework>
            <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
                <parameters>
                    <parameter value="mssqllocaldb" />
                </parameters>
            </defaultConnectionFactory>
            <providers>
                <provider invariantName="System.Data.SqlClient" 
                          type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
            </providers>
        </entityFramework>
        <system.codedom>
        </system.codedom>
    </configuration>
    <!--ProjectGuid: {9AFE5866-CFA2-43B2-8122-EC12418E7D63}-->  
    

    现在我有了我的网络应用程序,它至少显示出来,但我无法登录(https://my.banaturalportal.com/)。所以为了尝试更好地理解这个问题我在这里上传了第二个没有授权(没有登录)的版本(http://testing.banaturalportal.com/)并注意到调用数据库项的每个页面都抛出异常(调用“禁止”错误页面)。顺便说一下,网站现在没有证书。我不知道这是不是一个问题。

    我从未做过将数据放入SQL Server数据库的任何操作。我以为它会以某种方式工作。我想这是错的。我想我的第一个问题是,当数据库项被调用时,这是否会引发异常,因为我没有将我的数据库对象放入godaddy SQL Server(不知何故),即使我确保所有{{1}即使在上传的管理器中,仍然在.mdf文件夹中。还有两个,如果是这样的话,我该如何将这些数据库放入godaddy?如何将App_data本地可以访问的.mdf文件放在我的App_data本地文件中,以便我的asp.net网站可以使用它。

    我已经研究了很多,我无法弄清楚步骤是什么。我能够弄明白的是我需要SSMS(我已经下载了),也许我的SQL for Visual Studio(我已经下载了)。

    我也很高兴能够指出正确的方向。我知道godaddy不是一个受欢迎的主题,但我会感激任何帮助,因为我每天都这样做了3个星期而且我就像在这一点上非常难过。

1 个答案:

答案 0 :(得分:1)

我认为ADyson正确,尝试将您的localDB导入sql server。 这个答案对此有帮助:How to transfer ASP.NET MVC Database from LocalDb to SQL Server?