Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Installation of version 04.03.04Installation of version 04.03.04
Previous
 
Next
New Post
8/11/2006 8:44 AM
 

Hi!

I search tons about installation in the forum, but can't figure out what's wrong with my web.config file. When I supply my url, http://localhost/MyWebNuke/ I receive,

Installing DotNetNuke

Current Assembly Version: 04.03.04

ERROR: Could not connect to database specified in connectionString for SqlDataProvider

My web.config about the SQLs is like below:

  <connectionStrings>
    <!-- Connection String for SQL Server 2005 Express -->
    <add
      name="SiteSqlServer"
      connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"
      providerName="System.Data.SqlClient" />
    <!-- Connection String for SQL Server 2000/2005
    <add
      name="SiteSqlServer"
   type="DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
      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=;"/>
    -->
    <add key="InstallTemplate" value="DotNetNuke.install.config" />
    <add key="AutoUpgrade" value="true" />
    <add key="InstallMemberRole" value="true" />
    <add key="ShowMissingKeys" value="false" />
    <add key="EnableWebFarmSupport" value="false" />
    <add key="EnableCachePersistence" value="false"/>
    <add key="HostHeader" value="" /><!-- Host Header to remove from URL so "www.mydomain.com/johndoe/Default.aspx" is treated as "www.mydomain.com/Default.aspx" -->
    <add key="RemoveAngleBrackets" value="false" />
    <!--optionally strip angle brackets on public login and registration screens-->
  </appSettings>

Im running a local IIS 5.1 with Win XP SP2 (updated), with Framework 2.0, and a SQL Server 2000. Connection to local database, DotNetNuke, is tested with linking an Access 2000 database to it.

Any suggestions will be apreciated

TIA

 

 
New Post
8/11/2006 8:47 AM
 
please comment the connect string for SQL Express and uncomment the connect string for SQL Server 2000/2005 in both places. make sure, database name, username and password do match with your database setup.

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
8/14/2006 3:01 AM
 
Thanks for your effort to help, but I'm stuck here. I have find the comment, and removed it, so it's ok now, but there must be a problem with my connectionstring. It's easy to connect to the database using Win XPs admin ODBC tools, so I wonder how my connectionstring should be configured. An explation of the tags within the web.config file would maybe solve the problem.

I use SQL Server 2000. In the web.config there are:

1) name="SiteSqlServer"
    Is that correct, or what should be in this field?

2) connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;"
    I run the a local SQL Server (for test at first) with the local database "DotNetNuke".
    No uid or password is defined.
    Is that correct, or what should be in this field for a local server?

3) providerName="System.Data.SqlClient"
    Is that correct, or what should be in this field?

TIA
 
New Post
8/15/2006 3:07 AM
 
To clarify, I had the following in my ODBC settings when I tried to connect to the DotNetNuke database:

[HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\TestLG]
"Driver"="C:\\WINDOWS\\System32\\sqlsrv32.dll"
"Description"="SQLServer lokal"
"Server"="LASSEG"
"Database"="DotNetNuke"
"LastUser"="LarG"
"Trusted_Connection"="Yes"

I've tried with name=SiteSQLServer and connectionString="Server=LASSEG;Database=DotNetNuke;uid=;pwd=;" and many many combinations of this, but with no luck. I still receive:

Error Installing DotNetNuke

Current Assembly Version: 04.03.04

ERROR: Could not connect to database specified in connectionString for SqlDataProvider


I hope someone could help me on this, I have work with this for 2 days now and I think it's crazy to not be able to install the most simple thing.

TIA


 
New Post
8/19/2006 11:38 AM
 

i've got the same problem i commented out sql server 2005 express because i'm not using it and i still get the same error this is my web.config connection and app section sample:

  <connectionStrings>
    <!-- Connection String for SQL Server 2005 Express
    <add
      name="SiteSqlServer"
      connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"
      providerName="System.Data.SqlClient" />-->
    <!-- Connection String for SQL Server 2000/2005-->
    <add
      name="SiteSqlServer"
      connectionString="Server=(local);Database=DNN;uid=DNN;pwd=DNN;"
      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=DNN;uid=DNN;pwd=DNN;"/>
    <add key="InstallTemplate" value="DotNetNuke.install.config" />
    <add key="AutoUpgrade" value="true" />
    <add key="InstallMemberRole" value="true" />
    <add key="ShowMissingKeys" value="false" />
    <add key="EnableWebFarmSupport" value="false" />
    <add key="EnableCachePersistence" value="false"/>
    <add key="HostHeader" value="" /><!-- Host Header to remove from URL so "www.mydomain.com/johndoe/Default.aspx" is treated as "www.mydomain.com/Default.aspx" -->
    <add key="RemoveAngleBrackets" value="false" />
    <!--optionally strip angle brackets on public login and registration screens-->
  </appSettings>

can anyone help me?

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Installation of version 04.03.04Installation of version 04.03.04


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out