Google
 

Saturday, March 31, 2007

Install DotNetNuke on XP with Sql Express

  1. First follow up the steps in Install DotNetNuke 4.4.0 on Windows XP (The link you have to search the title in blog)
  2. Difference:
    1. Update connectiongstring as
        <connectionStrings>
          
      <!--  Connection String for SQL Server 2005 Express -->
          
      <add name="SiteSqlServer" connectionString ="Data Source=.\SQLEXPRESS;Initial Catalog=DotNetNuke;Integrated Security=True;" 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>



    2. < appSettings>
          
      <!-- Connection String for SQL Server 2005 Express - kept for backwards compatability - legacy modules    -->
          
      <add  key="SiteSqlServer" value="Data Source=.\SQLEXPRESS;Initial Catalog=DotNetNuke;Integrated Security=True;"  />
          
      <!--  Connection String for SQL Server 2000/2005 - kept for backwards compatability - legacy modules
          <add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
          
      -->
        
      </appSettings >

  3. Issues:


--
Happy day, happy life!

No comments: