Posted on: 8/19/2015 11:38:07 PM | Views : 845

So i'm trying to allow remote access to my error page for logged in users. However, I cannot access it. What am I missing? This is what i have in my web.config
<elmah> <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="connection"/> <!-- See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for more information on remote access and securing ELMAH. --> </elmah> <location path="elmah.axd" inheritInChildApplications="false"> <system.web> <httpHandlers> <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" /> </httpHandlers> <authorization> <deny users="*" /> <allow roles="superAdmin"/> </authorization> <!-- See http:/ ...

Go to the complete details ...