I have just upgraded DOTNETNUKE from 4.3.1 to 4.3.2. This running on MS2003 server with IIS6 and using the MS Web developer express. If I use the default web.config file nuke works fine. However, I want to use MS SQL 2000 and when I change the web.config file connectString to the below I encounter error below.
My web dir is names DOTNETNUKE and ASPNET and NEtwork SERVIE accoutn both have full rights to the dir and all subs.
I have the correct MS SQL account and access setup per other forum suggestions.
I notice other were having problems getting 4.2.1 to run with the same problem and the reason I upgraded to 4.3.2 build.
My question is does anyone have this combination running successfully? or is there a problem running with SQL 2000?
Appears to run ok in the MS Web Developer and when browser launches, first time appears to run than encounters below error after click on the My portal link. Afterward the same error appears over and over. See below error.
Here also is my connectionstring in web.config file
<
connectionStrings>
<
add name="SiteSqlServer" connectionString="Server=NYBCSREPORTS;Database=DotNetNuke;uid=gogginl;pwd=test;" providerName="System.Data.SqlClient" />
</
connectionStrings>
<
appSettings>
<
add key="SiteSqlServer" value="Server=NYBCSREPORTS;Database=DotNetNuke;uid=gogginl;pwd=test;" />
Server Error in '/DotNetNuke' Application.
Object reference not set to an instance of an object.
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.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
DotNetNuke.Entities.Portals.PortalSettings.GetPortalSettings(Int32 TabId, PortalAliasInfo objPortalAliasInfo) +125
DotNetNuke.Entities.Portals.PortalSettings..ctor(Int32 tabId, PortalAliasInfo objPortalAliasInfo) +83
DotNetNuke.HttpModules.UrlRewriteModule.OnBeginRequest(Object s, EventArgs e) +3964
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +138
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +65
|