ShadowSystems wrote
kwamemiller wrote I followed the starter kit and it installed everything for me but when it finished and it loaded the home page, I got the following error:
Line 84: Line 85: 'Determine the Upgrade status and redirect to Install.aspx Line 86: Select Case GetUpgradeStatus() Line 87: Case Globals.UpgradeStatus.Install, Globals.UpgradeStatus.Upgrade Line 88: If AutoUpgrade Then |
Source File: c:\inetpub\wwwroot\DotNetNuke\App_Code\Global.asax.vb Line: 86
|
i have that same problem
I was getting the same message too.
My environment is windowsXP Pro as my website (my testbed), with another machine running win2k3 running my database SQL2005 express.
Thanks to another post, I figured out that my SQL server entry was incorrect. Here is what I did:
Edit the "machine.config" in the root directory of where I extracted the dnn site.
----------------------------
WRONG - here i had set <add name="dotnetnuke" thinking that it should be the name of the database I had setup.
<!-- Connection String for SQL Server 2000/2005-->
<add name="dotnetnuke" connectionString="Server=MyDBServer;Database=DotNetNuke;uid=myuser;pwd=mypass;" providerName="System.Data.SqlClient" />
------------------------------------------
CORRECTED - now it says "SiteSQLServer"
<!-- Connection String for SQL Server 2000/2005-->
<add name="SiteSQLServer" connectionString="Server=MyDBServer;Database=DotNetNuke;uid=myuser;pwd=mypass;" providerName="System.Data.SqlClient" />
where MyDBServer is the hostname of my server with the database
DotNetNuke is the name of the database
myuser is the username for the database login
mypass is the password for the myuser username
-------------------------------------------
One last thing was when I created my database and setup the user, I forgot to uncheck user must change password at next logon. Duhh. I simply unchecked the "enforce password policy" since this is my own network.
Hope this helps someone else. I am new at posting to forums, but since someone else's post helped me, I figure I should post my results.