Install error 4.60.1

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
1 year ago
I am trying to install a clean version of Nop 4.60.1 and receiving the following error:

Config Error     This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".

Config File     \\?\C:\inetpub\wwwroot\NopCommerce4601\web.config

Config Source:
    3:   <system.webServer>
    4:     <modules>
    5:       <!-- Remove WebDAV module so that we can make DELETE requests -->

I went and looked at the 4.60 web.config and noticed it had the <modules> section commented out. I commented out the modules section in the web.config for the 4.60.1 install and everything worked as expected. I am guessing others will experience this issue as well.

Should I have approached a solution to this issue differently?


4.60.1 web.config
    <modules>
      <!-- Remove WebDAV module so that we can make DELETE requests -->
      <remove name="WebDAVModule" />
    </modules>

4.60 web.config
    <!-- <modules>-->
      <!-- Remove WebDAV module so that we can make DELETE requests -->
      <!-- <remove name="WebDAVModule" />-->
    <!-- </modules>-->
1 year ago
Yes this is what I do - unless you use the WebDAV service it is not needed and can be removed
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.