Sharepoint Forum

 
Home » Forum » Sharepoint       Ask a questionRSS Feeds

Runtime Error Description

  Asked By: Leland Navarro         Date: Nov 28, 2009      Category: Sharepoint      Views: 175
 

any one can explain why it's appear

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>

Tagged:      

 

3 Answers Found

 
Answer #1       Answered By: Vidisha Pathak          Answered On: Nov 28, 2009       

That's a pretty generic error  message - need more details  about where you are
seeing it, what you are doing at the time, etc.

 
Answer #2       Answered By: Malcolm Maxwell          Answered On: Nov 28, 2009       

This is because the .Net web.config custom error  setting is "RemoteOnly", if you
set to "True" (?) all users will see the ugly but informative .Net error
message, or login to the server  to see the full error.

 
Answer #3       Answered By: Mayur Mandal          Answered On: Nov 28, 2009       

Sorry for the braindead response - obviously the answer to viewing
the full error  message is provided below in the paragraphs
after "Server Error in '/'..."

 
Didn't find what you were looking for? Find more on Runtime Error Description Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].