Flightwatch Posted September 22, 2009 Share Posted September 22, 2009 I get following error on some pages. When I set asp.net 1.1 the webite is not working. Windows server 2008 64bit Server Error in '/' 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> Regards, Yves Link to comment Share on other sites More sharing options...
dimitrifrom31 Posted September 22, 2009 Share Posted September 22, 2009 did u try running the monitor service at normal/high priority on the master? Link to comment Share on other sites More sharing options...
Flightwatch Posted September 22, 2009 Author Share Posted September 22, 2009 did the same install as on windows server 2003, no problems there And via internet explorer on the server i get following error 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.] TCAdminSDK.Info.IsPluginLicensed(String xde5a9321cb4e9960) +104 Web.user_details.xde97676d01739ced(Object xe0292b9ed559da7d, EventArgs xfbf34718e704c6bc) +45 System.EventHandler.Invoke(Object sender, EventArgs e) +0 System.Web.UI.Control.OnLoad(EventArgs e) +99 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627 Link to comment Share on other sites More sharing options...
Flightwatch Posted September 22, 2009 Author Share Posted September 22, 2009 Problem solved. I reinstalled everything incl. IIS role. Apparently there was something wrong with IIS 7.0. Best regards, Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.