Hi, I running Win XP Pro, MSDE 2000, DDN 2.0.4
I have just done a clean install of DNN
I'm getting this error:
DotNetNuke Upgrade Error
The Assembly Version ( [ASSEMBLYVERSION] ) does not match the Database Version ( [DATABASEVERSION] )
ERROR: Could not connect to database specified in connectionString for SqlDataProvider
Here's my web.config settings:
<appSettings>
<add key="connectionString" value="Server=localhost;Database=DotNetNuke;uid=DNN;pwd=pass123;" />
</appSettings>
*******************************
<providers>
<clear/>
<add name = "SqlDataProvider"
type = "DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
connectionString = "Server=localhost;Database=DotNetNuke;uid=DNN;pwd=pass123;"
providerPath = "~\Providers\DataProviders\SqlDataProvider\"
objectQualifier = ""
databaseOwner = "dbo"
**************************************
I ran this script to setup the db user:
**************************
if not exists (select * from master.dbo.syslogins where loginname = N'DNN')
EXEC sp_addlogin N'DNN', N'pass123', N'DotNetNuke'
GO
USE DotNetNuke
if 'DNN' <> 'sa'
BEGIN
if not exists (select * from dbo.sysusers where name = N'DNN' and uid < 16382)
EXEC sp_grantdbaccess N'DNN', N'DNN'
EXEC sp_addrolemember N'db_owner', N'DNN'
END
GO
*************************************
I can log into the db with the user names specified, and make queries, so it seems that the db is working correctly.
When I browse to my local site for DNN , fttp://localhost\DNN, I get the error.
I have checked and re-checked the installation pocedures, I can't see what I'm doing wrong. I"M NOT USING MS SQL Enterprise GUI, I'm working from the osql command prompt.
Any help would be apreciated.