Jag har en sajt med behov av olika authentication. På sajten har jag installerat YAF-forum och har samtidigt en del mappar som jag vill ha lösenordsskyddade.Olika authentication
T.ex:
<location path="admin">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
Innan hade jag de här raderna:
<authentication mode="Forms">
<forms name=".ASPXAUTH" loginUrl="Admin/Login.aspx" path="/" timeout="15"></forms>
</authentication>
Men nu kräver YAF att de här raderna finns med:
<authentication mode="Forms">
<forms name=".YAFNET_Authentication" timeout="525600" />
</authentication>
Hur löser jag detta?