SVN authentication via Redmine.pm problem
Added by Curtis Schiewek over 15 years ago
I'm currently getting the following error when trying to authenticate via Redmine.pm
"failed to resolve handler 'Apache::Authn:Redmine::access_handler'"
I'm running 0.8.2 with mysql on SLES with Apache2 and mod_passenger. Here's my vhost config
<VirtualHost *:80>
DocumentRoot /srv/www/redmine/public
ServerName redmine
PerlLoadModule Apache::Redmine
<Location /svn>
DAV svn
SVNParentPath /srv/svn
SVNListParentPath On
AuthType Basic
AuthName redmine
Require valid-user
PerlAccessHandler Apache::Authn:Redmine::access_handler
PerlAuthenHandler Apache::Authn:Redmine::authen_handler
RedmineDSN "DBI:mysql:database=redmine;host=localhost"
RedmineDbUser "user"
RedmineDbPass "pass"
</Location>
<Directory /srv/www/redmine/public>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>