Search code examples
asp.net-mvcepiserver

Wrong value of probingPath attribute in episerver.framework/scanAssembly node: 'modulesbin'. Attribute value should point to existing folder


I am developing MVC Site using EpiServer. I created Site using this one tutorial EpiServer Commerce And everything looks good, I created site in CMS/Admin, I can open CMS Edit, can open Commerce/Catalog but when I try to open COmmerce/Commerce Manager I got next error:

  Server Error in '/' Application.

Wrong value of probingPath attribute in episerver.framework/scanAssembly node: 'modulesbin'. Attribute value should point to existing folder.

enter image description here

modulesbin folder exist:

enter image description here

Any ideas ?


Solution

  • Check for this in the web.config

    <configuration>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <probing privatePath="modulesbin" />
        </assemblyBinding>
      </runtime>
    </configuration>
    

    And check the modulesbin folder exists in your site root