私はそれを理解しようと一晩中起きていて、AspxCommerce を GoDaddy サーバーにインストールしようとしました。これをインストールしようとしたときに複数の問題に遭遇しました。長い調査の結果、すべての答えが見つかりましたが、この最後の問題では、「SageFrameConnectionString」への接続がないという構成エラーが発生しています。そこに到達するために必要な手順を含め、これをどのように行うべきかについて誰か考えがありますか?
PS: ローカルにインストールすると、すべてがうまく機能します..
web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<roleManager enabled="true" defaultProvider="SageFrameSqlRoleProvider">
<providers>
<clear />
<add connectionStringName="SageFrameConnectionString" applicationName="SageFrame" name="SageFrameSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add applicationName="SageFrame" name="SageFrameWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</roleManager>
</system.web>
</configuration>
接続文字列.config:
<?xml version="1.0"?>
<connectionStrings>
<clear />
<add name="SageFrameConnectionString" connectionString="Data Source=;Initial Catalog=;Integrated Security=False;Persist Security Info=False;User ID=;Password=;Connect Timeout=120" providerName="System.Data.SqlClient" />
</connectionStrings>