Ok I upgraded again and this time it did populate the membership tables but I still get the following handled error:
Failure
There's been a system error processing your request. Please contact the forum admin explaining what you were doing when it happened.
Continue...
This error does not show up as a normal asp.net error so changing the web.config customError element has no effect. It shows up under the heading of "Forum » Failure".
I looked in the Window Event Viewer and found the following:
Event code: 3007
Event message: A compilation error has occurred.
Event time: 12/9/2009 8:42:53 PM
Event time (UTC): 12/10/2009 3:42:53 AM
Event ID: 2ea568bd73304fc0a43d3900370e65f1
Event sequence: 3
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/4/ROOT/forum-5-129018901732301111
Trust level: Full
Application Virtual Path: /forum
Application Path: C:\Inetpub\c\forum\
Machine name: MACHINE1
Process information:
Process ID: 2032
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: HttpCompileException
Exception message: C:\Inetpub\c\forum\App_Code\YAF\Modules\PageLogoHandlerModule.cs(59): error CS0246: The type or namespace name 'var' could not be found (are you missing a using directive or an assembly reference?)
Request information:
http://c.com/forum/Default.aspx?g=rsstopic&pg=topics&f=8
Request path: /forum/Default.aspx
User host address: ...
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:
Thread ID: 6
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at System.Web.Compilation.AssemblyBuilder.Compile()
at System.Web.Compilation.BuildProvidersCompiler.PerformBuild()
at System.Web.Compilation.CodeDirectoryCompiler.GetCodeDirectoryAssembly(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories, Boolean isDirectoryAllowed)
at System.Web.Compilation.BuildManager.CompileCodeDirectory(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories)
at System.Web.Compilation.BuildManager.CompileCodeDirectories()
at System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled()
at System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters)
Custom event details:
FOLLOW UP: OK this looks like a compile error and since the error is on "var" which is a c# 3.x keyword I would guess that IIS is not set up to use the cs 3.x when compiling? I found the compilers section in the web.config and it specifies a compiler version of v3.5 so I assume that is set correctly and since other people get the release to work I assume the source code is correct. Any ideas?
FOLLOW UP 2: I modified the PageLogoHandlerModule.cs file and changed the two "var" keywords to the method return types and I no longer see the error in the event log, but I still get the Failure error listed at the top of this message. Is there any way to find out what specifically failed?
Edited by user
13 years ago
|
Reason: Not specified