Runtime Error

Discussion in 'Scripting & Programming' started by darius28, Apr 14, 2008.

  1. darius28

    darius28 New Member

    8
    0
    6
    I was wondering if anyone could help me solve a problem which I cannot solve.

    I have made a website in ASP.net with flash control which works perfectly on my machine, however when I put it up on my webhost I recive the following error:

    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>
     
    WIP: CIW
  2. hbroomhall

    hbroomhall Petabyte Poster Gold Member

    6,624
    117
    224
    Looking at that I would suggest following what it says so as to get the error details.

    I would suspect permissions myself - but that is just a guess. You need the details to be sure.

    Harry.
     
    Certifications: ECDL A+ Network+ i-Net+
    WIP: Server+
  3. ffreeloader

    ffreeloader Terabyte Poster

    3,661
    106
    167
    If this was php, perl, python, etc... I'd also advise making sure your webhost provides the same version of scripting language that you used to create your site. If not, well, you would have a myriad of problems.

    I don't know if ASP has the same versioning issues a lot scripting languages have, but if it does, that's one area I would look at.

    The guru, Harry, though is probably on target with his permissions suggestion. He's rarely wrong.
     
    Certifications: MCSE, MCDBA, CCNA, A+
    WIP: LPIC 1

Share This Page

Loading...
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.