Hi all
I get the next error, when I'm trying to use AuthCookie:
failed to resolve handler Promtelecom::Authentication
I put Promtelecom/Authentication.pm into /usr/local/lib/site_perl, which
is in my @INC path list.
Here is my httpd.conf:
PerlModule Promtelecom::Authentication
PerlSetVar WhatEverLoginScript /promtelecomindex.html
PerlSetVar WhatEverSatisfy Any
PerlSetVar WhatEverCache 1
PerlSetVar WhatEverExpires +2h
<Location /protected>
AuthType Promtelecom::Authentication
AuthName "Promtelecom Database"
PerlAuthenHandler Promtelecom::Authentication->authenticate
PerlAuthzHandler Promtelecom::Authentication->authorize
require valid-user
</Location>
<Files LOGIN>
AuthType Promtelecom::Authentication
AuthName WhatEver
SetHandler perl-script
PerlResponseHandler Promtelecom::Authentication->login
</Files>