Hi,
Fresh install of 4.3.5 with SQL2000 - the portal installs, builds the database, installs the modules then:
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) +5768 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
|
I have seen other posts on webconfig settings but don't think I have a problem here -
<connectionStrings>
<!-- Connection String for SQL Server 2005 Express
<add
name="SiteSqlServer"
connectionString="Data
Source=.\SQLExpress;Integrated Security=True;User
Instance=True;AttachDBFilename=C:\Program Files\Microsoft SQL
Server\MSSQL.1\MSSQL\Data\DNN.mdf;"
providerName="System.Data.SqlClient" />
<! Connection String for SQL Server 2000/2005 -->
<add name="SiteSqlServer"
connectionString="Server=pcstart;Database=DNN;uid=sa;pwd=oscar99;"
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=.\SQLExpress;Integrated Security=True;User
Instance=True;AttachDBFilename=C:\Program Files\Microsoft SQL
Server\MSSQL.1\MSSQL\Data\DNN.mdf;"/>
<! Connection String for SQL Server 2000/2005 - kept for backwards compatability - legacy modules -->
<add key="SiteSqlServer" value="Server=pcstart;Database=DNN;uid=sa;pwd=oscar99;" />
Can anyone pinpoint what may be wrong here - the SQLExpress connection
section is commented out as I just couldn't get it to work with this
....
Patrick