Hey Cathal,
thanks for the reply - at least now I know the issue is in web.config, however i am still stuck without knowing what to do. Apologies for being such a noob.
So this is where i am at now:
I followed this thread to create a udl - http://www.dnnsoftware.com/forums/forumid/107/threadid/496677/scope/posts/threadpage/2
the udl comes gives:
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=DotNetNuke;Data Source=MMRRCSERVER\SQLEXPRESS
So ive changed my web.config file from this:
<connectionStrings>
<!-- Connection String for SQL Server 2005/2008 Express -->
<add name="SiteSqlServer" connectionString="Data Source=.\SQLExpress;AttachDbFilename=|DataDirectory|Database.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />
<!-- Connection String for SQL Server 2005/2008
<add name="SiteSqlServer" connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;" providerName="System.Data.SqlClient" />
--></connectionStrings><appSettings>
<!-- Connection String for SQL Server 2005/2008 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 2005/2008 - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
-->
To this:
<!-- Connection String for SQL Server 2005/2008 Express -->
<add name="SiteSqlServer" connectionString="Data Source=MMRRCSERVER\SQLEXPRESS;initial catalog=DotNetNuke;Integrated Security=SSPI;User Instance=True" providerName="System.Data.SqlClient" />
<!-- Connection String for SQL Server 2005/2008
<add name="SiteSqlServer" connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;" providerName="System.Data.SqlClient" />
-->
</connectionStrings>
<appSettings>
<!-- Connection String for SQL Server 2005/2008 Express - kept for backwards compatability - legacy modules -->
<add key="SiteSqlServer" value="Data Source=MMRRCSERVER\SQLEXPRESS;Initial Catalog=DotNetNuke;Integrated Security=SSPI;User Instance=True" />
<!-- Connection String for SQL Server 2005/2008 - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
-->
Do I have this correct?
If i reload the webpage i still get to the install page.....so still something wrong here, is there anyway to figure out what the issue is? ie i do not get any warnings errors etc -
thanks again for any help you can give me,
cheers,
Ger.