Link to home
Start Free TrialLog in
Avatar of XChangingIT
XChangingITFlag for United States of America

asked on

Sharepoint coming up with Runtime application '/ ' error

Sharepoint "Companyweb" only not working.

I tried flipping the ASP versions from 2.0 to 1.1.  I did not install WSS 3.0.  I have WSS 2.0 SP3 and i get the error message below when running on ASP 1.1.4322.  WHen i run on ASP 2.0 it says Page can not be displayed.

The Sharepoint Central Administration and Sharepoint Administration work just fine (with their port #s of course).

Thanks!!
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>

Open in new window

SOLUTION
Avatar of Jeffrey Kane - TechSoEasy
Jeffrey Kane - TechSoEasy
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Well that would work as well.  As you'd see from many of my posts about this error uninstalling .NET 2.0 one of the recommendations.  I generally don't recommend that anymore because folks have applications that depend on .NET 2.0 in many cases.

Jeff
TechSoEasy
Avatar of XChangingIT

ASKER

Thats actually the first thing i tried Jeff.  I saw that command from another post from a similar question.  When I executed it, it said  "completed successfully" but the site still wouldnt come up.  

But what i just posted worked.

thanks anyway.
yea this is a new install (installing the server tomorrow) so thank God it worked or i would have been up the creek tomorrow.