I have uploaded (using webmatrix webdeploy function) a simple DNN website to a hosting service and on accessing the site I get this error and it reports that Requested URL: /Install/InstallWizard.aspx is not available.
I think from looking at the other questions and answers that this may mean the SQL server strings in web.config are not correct.
I see people saying two strings need to match, but not sure which two. Can anyone help?
My web.config currently contains:
<connectionStrings>
<!-- Connection String for SQL Server 2008/2012 Express -->
<add name="SiteSqlServer" connectionString="Data Source="10.127.255.4\SQL2014, 780";Initial Catalog=shanedhorloc_wlhg;User ID=shanedhorloc_host;Password=MNBVC1!xz" providerName="System.Data.SqlClient" />
<!-- Connection String for SQL Server 2008/2012
<add name="SiteSqlServer" connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;" providerName="System.Data.SqlClient" />
-->
</connectionStrings>
<appSettings>
<!-- Connection String for SQL Server 2008/2012 Express - kept for backwards compatability - legacy modules -->
<add key="SiteSqlServer" value="Data Source=.\SQLExpress;AttachDbFilename=|DataDirectory|Database.mdf;Integrated Security=True;User Instance=True" />
<!-- Connection String for SQL Server 2008/2012 - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
-->