Invalid command 'PerlAuthenHandler', perhaps mis-spelled or defined by a module not included in the server configuration The following code block lets the Apache server start, but if I uncomment either of the commented lines, it throws an error.
<Directory "/Library/WebServer/mySite/htdocs/secure">
Options Includes Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
AuthName "mySite Members Only"
AuthType Basic
# PerlAuthenHandler Techex::Authen
# PerlAuthzHandler Techex::Authz
Require valid-user
</Directory>
(I thought this would be an easy problem to google, but no luck there. Also didn't see PerlAuthenHandler mentioned in my Apache Definitive Guide.)
BTW, I'm trying to get this site working using CGI. If and when that works, I may try to get it working with mod_perl.
My environment info:
OS: Mac OS X Server 10.4.3
Perl: 5.8.6
WebServer: Apache/1.3.33 (Darwin)
MySQL: 5.0.15-standard
Any help is appreciated.
[perl.apache.org...]