Hey everybody, im new here, and realtivly new to ASP and asp.net. Ok so this is my problem. I downloaded the TimeTracker kit and ran it off my win xp computer just fine. So i had it uploaded to my site hmrq.com (my host i use can fully function asp files)
so when i uploaded it i got this error message:
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".
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.
So i tryed changing all my web.config files to off instead of remoteonly but nothing has changed, if you would like to see for yourself go to Http://breeze.hmrq.com/checkpoint/time/
It would be great if someone could give me advice, thanks![:D]
Jh60082
Member
14 Points
6 Posts
Trouble in TimeTracker
Jul 05, 2007 01:55 AM|LINK
Hey everybody, im new here, and realtivly new to ASP and asp.net. Ok so this is my problem. I downloaded the TimeTracker kit and ran it off my win xp computer just fine. So i had it uploaded to my site hmrq.com (my host i use can fully function asp files) so when i uploaded it i got this error message:
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>So i tryed changing all my web.config files to off instead of remoteonly but nothing has changed, if you would like to see for yourself go to Http://breeze.hmrq.com/checkpoint/time/ It would be great if someone could give me advice, thanks![:D]
Novice User
Webmaster of HMRQ.com
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: Trouble in TimeTracker
Jul 05, 2007 03:58 AM|LINK
Try to set <customErrors mode="Off"/> only
So you will get exactly error...if there are more than 1 we.config files
set <customErrors mode="Off"/> in both files.
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.