felix4067
-
Total Posts:
2325
- Joined: 12/13/2003
- Location: Near Grand Rapids, MI
|
Runtime error on the home page
Sat, 12/3/11 1:38 AM
( permalink)
This is what I just got in trying to get to the home page by clicking on the Roadfood logo in the upper left corner: 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> Figured I'd mention it in case it's not just late night programming by the powers that be.
|
|
|
|
edwmax
-
Total Posts:
1463
- Joined: 1/1/2007
- Location: Cairo, GA
|
Re:Runtime error on the home page
Sat, 12/3/11 9:02 AM
( permalink)
I don't have that problem when clicking on the logo. It's either been fixed; or the problem is with the browser you are using.
|
|
|
|
|
Tony Bad
|
Re:Runtime error on the home page
Sat, 12/3/11 10:16 AM
( permalink)
What you experienced maybe due to clicking on the page during site maintenance or during an update. If it is something that persists let us know.
|
|
|
|
mar52
-
Total Posts:
5310
- Joined: 4/17/2005
- Location: Marina del Rey, CA
|
Re:Runtime error on the home page
Sat, 12/3/11 3:39 PM
( permalink)
I couldn't get on here at all last night. I had one page open and posted a long response and when I hit reply I lost the entire thing with that error message. I tried two different browsers and got the same messages.
|
|
|
|
felix4067
-
Total Posts:
2325
- Joined: 12/13/2003
- Location: Near Grand Rapids, MI
|
Re:Runtime error on the home page
Sun, 12/4/11 12:27 AM
( permalink)
Tony Bad What you experienced maybe due to clicking on the page during site maintenance or during an update. If it is something that persists let us know. I figured that was probably it, but wanted to mention it in case it wasn't. Works fine today.
|
|
|
|