environment:
Windows Server 2003 w/ IIS 6
MS SQL 2005
When I browse to http://localhost/ I get a page that says "Page could not be displayed" and in the computer's application event log, I get this:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 6/19/2006 4:29:05 PM
Event time (UTC): 6/19/2006 8:29:05 PM
Event ID: b8657ad360d84d718b293b3bed01f81d
Event sequence: 2
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/1026413087/Root-5-127952225449746397
Trust level: Full
Application Virtual Path: /
Application Path: C:\Inetpub\BSAroot\
Machine name: FTP
Process information:
Process ID: 2172
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: HttpException
Exception message: The remote host closed the connection. The error code is 0x80072746.
Request information:
Request URL: http://ftp.web.bsa.pri/Default.aspx
Request path: /Default.aspx
User host address: 192.168.11.198
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:
Thread ID: 1
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.FlushCore(Byte[] status, Byte[] header, Int32 keepConnected, Int32 totalBodySize, Int32 numBodyFragments, IntPtr[] bodyFragments, Int32[] bodyFragmentLengths, Int32 doneWithSession, Int32 finalStatus, Boolean& async)
at System.Web.Hosting.ISAPIWorkerRequest.FlushCachedResponse(Boolean isFinal)
at System.Web.Hosting.ISAPIWorkerRequest.FlushResponse(Boolean finalFlush)
at System.Web.HttpResponse.Flush(Boolean finalFlush)
at System.Web.HttpResponse.Flush()
at System.Web.HttpResponse.End()
at System.Web.HttpResponse.Redirect(String url, Boolean endResponse)
at System.Web.HttpResponse.Redirect(String url)
at DotNetNuke.Common.Global.CheckVersion()
at DotNetNuke.Common.Global.Application_Start(Object Sender, EventArgs E)
At first I was using SQL Express 2005 and got this error, so I tried Server 2005 instead and received the same error.
After receiving this error, there is a table in the DNN database I setup.. The table is "Version" and there are some stored procedures, FindDatabaseVersion, GetDatabaseVersion, and UpdateDatabaseVersion.. So it seems like it is failing at some point, but the error doesn't point me in the right direction.
If I browse to the localhost path again, I get an error about a stored procedure named PurgeEventLog being missing.
Ive been struggling with this for 2 or 3 days now. Any hints would be appreciated. Thanks
-Jeff