This website was the only link for help. I'm trying to view my pay but got this page instead:

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".

<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.

<configuration> <system.web> <customerrors mode="RemoteOnly" defaultredirect="mycustompage.htm"/> </system.web> </configuration>

asked 15 Feb '16, 22:08

Error's gravatar image

Error
111
accept rate: 0%

wikified 15 Feb '16, 22:12


Hi Error,

I'm not sure if your at the correct web site. This a support forum for Power Admin and our products PA Server Monitor, PA File Sight, and PA Storage Monitor. Please let us know if you have a question for the fourm.

Thanks
Quinn

Please make sure to mark your questions accepted when you have your answer by clicking the gray check mark to the left of the answer.

link

answered 17 Feb '16, 14:19

Quinn's gravatar image

Quinn ♦♦
14.4k3925
accept rate: 35%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×37
×1

Asked: 15 Feb '16, 22:08

Seen: 3,573 times

Last updated: 17 Feb '16, 14:19