Runtime error

Hi all,

When iam accessing the production url iam getting below error.Please help me.

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,

Praveen

September 7th, 2015 3:00am


Star > RUN > Inetmgr > expand server > sites > select the website > right click > explore.
now you should be able to see a web.config file. if it was recently modified by someone, please check with team if anyone modified the file, deployed a farm solution or run psconfig wizard.

if no one has done any changes, make a copy of this web.config file and open the oroginal file.

search for callstack and set it true and search for customerros set it to off

Try to browse site and share the new error message

Free Windows Admin Tool Kit Click here and download it now
September 7th, 2015 3:13am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics