Hello,
I'm trying to avoid authentication with Elmah but it always force me to login in before looking the logs.
Here some configuration of my webconfig:
<add key="elmah.mvc.disableHandler" value="false" />
<add key="elmah.mvc.disableHandleErrorFilter" value="false" />
<add key="elmah.mvc.requiresAuthentication" value="false" />
<add key="elmah.mvc.IgnoreDefaultRoute" value="false" />
<add key="elmah.mvc.allowedRoles" value="*" />
<add key="elmah.mvc.allowedUsers" value="*" />
<add key="elmah.mvc.route" value="elmah" />
<add key="elmah.mvc.UserAuthCaseSensitive" value="true" />
<sessionState timeout="80"></sessionState>
<authentication mode="Forms">
<forms loginUrl="~/Conta/Login" timeout="60" />
</authentication>
I tried many configurations n webconfig, but it did not work.
Is someone solved a issue lije that?
Could you help me?
Regards, Rogério.