Here is the error as requested.
Value cannot be null.
Parameter name: type
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type
Source Error:
Line 80: Line 81: 'Determine the Upgrade status and redirect to Install.aspx Line 82: Select Case GetUpgradeStatus() Line 83: Case Globals.UpgradeStatus.Install Line 84: If AutoUpgrade Then
|
Source File: D:\SkyeWeb\Website\App_Code\Global.asax.vb Line: 82
Stack Trace:
[ArgumentNullException: Value cannot be null. Parameter name: type] System.Activator.CreateInstance(Type type, Boolean nonPublic) +2768503 DotNetNuke.Framework.Reflection.CreateObject(String ObjectProviderType, String ObjectProviderName, String ObjectNamespace, String ObjectAssemblyName, Boolean UseCache) +582 DotNetNuke.Data.DataProvider.CreateProvider() +47 DotNetNuke.Data.DataProvider..cctor() +13
[TypeInitializationException: The type initializer for 'DotNetNuke.Data.DataProvider' threw an exception.] DotNetNuke.Common.Globals.GetUpgradeStatus() +67 DotNetNuke.Common.Global.CheckVersion() in D:\SkyeWeb\Website\App_Code\Global.asax.vb:82 DotNetNuke.Common.Global.Application_Start(Object Sender, EventArgs E) in D:\SkyeWeb\Website\App_Code\Global.asax.vb:310
|
Also: here is my connection string (I am using SQL Server 2005 express):
<!-- Connection String for SQL Server 2005 Express -->
<add name="SiteSqlServer" connectionString="Data Source=XXXX\U15221866;Initial Catalog=YYYY;User Id=YYYYY;Password=ZZZZZ" 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>
<appSettings>
<!-- Connection String for SQL Server 2005 Express - kept for backwards compatability - legacy modules -->
<add key="SiteSqlServer" value="Data Source=XXXX\U15221866;Initial Catalog=YYYY;User Id=YYYYY;Password=ZZZZZ" />
<!-- Connection String for SQL Server 2000/2005 - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Server=(local);Database=DotNetNuke;uid=;pwd=;"/>
-->
----
as you can see, I removed the ";" at the end of the connection strings and still no love.
I believe it has something to do with old/obsolete dlls, but I have tried to eliminate one-by-one in the bin and no love.
Thanks,