Like they say in prison, I'm innocent. I'm not sure what happened but I get a runtime error when you try to visit the site. I had a similar error 3 months ago and when I put in a support ticket they just fixed it.
Now they say I have to backup and reinstall. I made a backup of the site content and database and now before I pull the trigger and put myself into the mode of reinstalling I want to know if anyone knows if this is a simple fix or do I really need to reinstall and go through the whole setup process.
So, here is the error.... Anybody know if this is repairable by looking at it?
Thanks,
C
Note: I removed the < so the code would show.
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 tag within a
"web.config" configuration file located in the root directory of the
current web application. This 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
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>
|