right, so i got install.aspx to run.
but now i'm getting an error connecting to the db. Error is:
A critical error has occurred: An error has
occurred while establishing a connection to the server. When connecting
to SQL Server 2005, this failure may be caused by the fact that under
the default settings SQL Server does not allow remote connections.
(provider: Named Pipes Provider, error: 40 - Could not open a
connection to SQL Server)
Now, i've come across the error before but the last time it was due to named pipes not being enabled. I have NP, TCP, Shared Mem enabled in SQL Config Mngr, SQLBrowser service started and my firewall turned off.
This is wrecking my head. Here is my connection string from web.config:
<connectionStrings>
<add name="dashCommerce" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\localswimshop.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />
</connectionStrings>
Thoughts?