NginUS

chainpay error

Sep 4th, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. Server Error in '/' Application.
  2.  
  3. Runtime Error
  4.  
  5. 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.
  6.  
  7. 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".
  8.  
  9.  
  10. <!-- Web.Config Configuration File -->
  11.  
  12. <configuration>
  13. <system.web>
  14. <customErrors mode="Off"/>
  15. </system.web>
  16. </configuration>
  17.  
  18. 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.
  19.  
  20.  
  21. <!-- Web.Config Configuration File -->
  22.  
  23. <configuration>
  24. <system.web>
  25. <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
  26. </system.web>
  27. </configuration>
Add Comment
Please, Sign In to add comment