Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > Visual Web Developer 2005
|
Visual Web Developer 2005 Discuss creating ASP.NET 2.0 sites with Microsoft's Visual Web Developer 2005. If your question is more specific to a piece of code than the Visual tool, see the ASP.NEt 2.0 forums instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Visual Web Developer 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 26th, 2006, 02:42 AM
Registered User
 
Join Date: Jun 2006
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default configuration problem access denied!

I am trying to upload a sample site. even though it works fine localy i get this error from remote server:
Code:
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: An error occurred loading a configuration file: Access to the path 'C:\AspSpiderRoot\web.config' is denied.

Source Error: 

[No relevant source lines]

Source File: C:\AspSpiderRoot\web.config    Line: 0

I have tried a few things but really i am lost.
this is my web.config:
Code:
<?xml version="1.0"?>

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
    <appSettings />
    <connectionStrings>
    <!--<add name="NorthwindConnectionString" 
            connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Northwind.mdf;Integrated Security=True;User Instance=True" 
            providerName="System.Data.SqlClient" /> -->
      <add name="ConnectionString" connectionString="Data Source=.\SQLExpress;Persist Security Info=True;Integrated Security=SSPI;Initial Catalog=chris_northwind"/>
    </connectionStrings>
    <system.web>
      <compilation debug="true">
        <expressionBuilders>
          <add expressionPrefix="Themes" type="ThemesExpressionBuilder"/>
        </expressionBuilders>
      </compilation>

      <authentication mode="Forms" />


      <pages styleSheetTheme="Snow" />

      <anonymousIdentification enabled="true" />

      <customErrors mode="Off" />


        <profile enabled="true">
          <properties>
            <add name="ShoppingCart" type="ShoppingCart" allowAnonymous="true" serializeAs="Binary" />
          </properties>
        </profile>
    </system.web>  
</configuration>
Can someone point me to the right direction of correction this?????






Similar Threads
Thread Thread Starter Forum Replies Last Post
401.3 Access denied due to Access Control List cforsyth .NET Framework 2.0 8 May 28th, 2009 01:56 PM
Problem about access denied . doctorsom General .NET 0 August 19th, 2005 12:20 AM
The infamous Access denied problem... RMASSEY MySQL 1 December 27th, 2004 11:20 PM
Access Denied Problem tys MySQL 1 April 7th, 2004 04:12 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.