View Single Post
  #1 (permalink)  
Old 03-27-04, 04:06 PM
mf_read mf_read is offline
New Member
 
Join Date: Mar 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Post Small Business Server 2003 ASP or .NET problem

Hello,

I have installed SBS2003 and the companyweb feature or some of the mmc applications display server errors.

I know that disk 3 of SBS2003 had a fault regarding Sharepoint services and I have downloaded the latest patches from MS to fix that, but I am no programmer and I really dont know why I am getting these errors.

When using the Server Management console I get these errors when clicking on certain applets

I would appreciate If any of you could advise what I have done wrong or explain in layman terms how to fix it.

Regards

Mike.

Clicking Monitoring and Reporting

I get:

Server Error in '/Monitoring' 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.

Details: To enable the details of this specific error message to be viewable on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

*******************************************

Clicking Backup

I get

Server Error in '/Backup' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: This config section already contains an identical line, which is not allowed.

Source Error:


Line 350: extension=".js"
Line 351: type="Microsoft.JScript.JScriptCodeProvider, Microsoft.JScript, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 352: </compilers>
Line 353:
Line 354: <assemblies>


Source File: c:\windows\microsoft.net\framework\v1.1.4322\Confi g\machine.config Line: 352

**********************************************

Clicking on Companyweb
I get:
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.

Details: To enable the details of this specific error message to be viewable on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</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="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>



********************************************

I have installed the follwoing version of .NET Framework etc...

Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
Reply With Quote