YAFLogo

Ken1972
  • Ken1972
  • 80.6% (Honored)
  • YAF Lover Topic Starter
14 years ago
Gang,

here is the error I am receiving when I tried upgrading:


Server Error in '/BigFourCarp/forum' Application.
--------------------------------------------------------------------------------

Runtime Error 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. 

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
 

Sponsor
RichP714
  • RichP714
  • 100% (Exalted)
  • YAF All-the-Time
14 years ago
That means you're not being shown the actual error; follow the instructions for turning customerror mode="off" and then post the install error you're getting
Enjoy!

Running YAF 1.9.5.5 final at: http://thecarversite.com 

Ken1972
  • Ken1972
  • 80.6% (Honored)
  • YAF Lover Topic Starter
14 years ago
Here is the Error:


Compilation Error 
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS0234: The type or namespace name 'ForumPages' does not exist in the namespace 'YAF.Classes.Utils' (are you missing an assembly reference?)

Source Error:

 

Line 36: 		private string _origHeaderClientID;
Line 37: 		private string _origFooterClientID;
Line 38: 		private YAF.Classes.Utils.ForumPages _page;
Line 39: 		public event EventHandler<YAF.Classes.Base.ForumPageArgs> PageTitleSet;
Line 40: