Hi, I'm using apache-2.0 + mod_perl-2.0.3 Trying to make my users authenticated against a NIS domain, to do so I installed Authen::Simple::NIS, Net::NIS, Net::NIS::Table Added the following config to httpd.conf ---------------------- PerlModule Authen::Simple::NIS <Location /test> AuthType Basic AuthName "Authentication required" PerlAuthenHandler Authen::Simple::NIS PerlSetVar AuthenSimpleNIS_domain "NIS-lab" Require valid-user </Location> -------------------------- apachectl -t returns OK once apache is restarted and I try to access the url /test I get:
"failed to resolve handler Authen::Simple::NIS" Any clue where I'm missing? thanks