Yes. I still cannot access any of the admin functions. The web config looks like this
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<httpRuntime executionTimeout="120" maxRequestLength="20000"/>
<authorization>
<allow roles="Administrator"/>
<deny users="*"/>
</authorization>
</system.web>
<location path = "Admin/Catalog">
<system.web>
<authorization>
<allow roles="Administrator,ProductAdmin"/>
</authorization>
</system.web>
</location>
</configuration>
|