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