Hi,
I used the default for installing the dotnetnuke website. (starterkit version 4.3.5, VisualStudio 2005, SQLExpress2005)
I use SQLExpress with the following connection strings
<
connectionStrings>
<!--
Connection String for SQL Server 2005 Express -->
<
add name="SiteSqlServer" connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=false;AttachDBFilename=|DataDirectory|Database.mdf;" providerName="System.Data.SqlClient"/>
<!--
Connection String for SQL Server 2000/2005
<add
name="SiteSqlServer"
connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;"
providerName="System.Data.SqlClient" />
-->
</
connectionStrings>
<
appSettings>
<!--
Connection String for SQL Server 2005 Express - kept for backwards compatability - legacy modules -->
<
add key="SiteSqlServer" value="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"/>
<!--
Connection String for SQL Server 2000/2005 - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
-->
I get the following error:
Error Installing DotNetNuke. Current Assembly Version: 04.03.05. ERROR: Could not connect to database specified in connectionString for SqlDataProvider ...
Your solution suggests that use the database name, user name and password. Should I manually create a new database, I am using Windows authentication for SQLExpress database. Should I give the userid and password then?
Thank you and Regards,
RSB