RunTime Error - After my web site running 2 or 3 days

N

news.citenet.net

I keep getting the following error message after my web site running 2 or 3
days
I share one folder with about 200 domain names

Any one can help?



--------------------------------------------------------------------------------

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

Lebesgue

Do what it asks you to do - set customErrors mode to Off. And also set
compilation mode to debug.

<compilation debug="true">

And wait for the error to happen again to see the cause.
 
N

news.citenet.net

Hi Lebesgue,

Thank you for your answer. What will happen if I put the mode="off" ? How
can I be told there is an error in the server?

Z. Su
 
N

news.citenet.net

The error happened last night at 9:00 pm when I checked with same error
message and recoverted this morning when I was in the office. I made the
mode="off". This kind of things have things happened since I setup the site.
Sometimes the period takes a longer and sometimes it takes a shorter.
I checked the Event Log. There are only error events in the application
category:
The following is the error message:
================================================================
Event Type: Error
Event Source: MSExchangeAL
Event Category: Service Control
Event ID: 8260
Date: 28/04/2006
Time: 9:45:02 AM
User: N/A
Computer: EXPORTNETWORK
Description:
Could not open LDAP session to directory 'EXPORTNETWORK.exortcanada.local'
using local service credentials. Cannot access Address List configuration
information. Make sure the server 'EXPORTNETWORK.exortcanada.local' is
running. DC=exortcanada,DC=local

================================================================

I don't use MSExchange server, I don't know this can cause the problem or
not. So far I stopped all of services
relativated with MSExchange

================================================================
Event Type: Error
Event Source: DCOM
Event Category: None
Event ID: 10016
Date: 24/04/2006
Time: 3:42:09 PM
User: NT AUTHORITY\NETWORK SERVICE
Computer: EXPORTNETWORK
Description:
The application-specific permission settings do not grant Local Activation
permission for the COM Server application with CLSID
{73B25FFD-F501-437B-8B11-7F0DE383964F}
to the user NT AUTHORITY\NETWORK SERVICE SID (S-1-5-20). This security
permission can be modified using the Component Services administrative tool.

================================================================

This is other error happened before.

I can't view System Log - corrupt.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top