[rt-users] Apache problem
Frank Saxton
frankie at easyrider.com
Tue Mar 22 23:59:02 EST 2005
Hello folks,
I'll bet just about everyone here has already had to solve this particular
problem at least once. I know that I've seen it before...
I have RT 99% installed but when I startup apache 2.0.52 it complains about
PerlModule Apache and PerlRequire. If I comment those lines out, apache
starts fine (but of course RT won't work).
If I do a httpd -l it returns nothing but if I add LoadModule perl_module
modules/mod_perl.so to the httpd.conf it says that it's already loaded.
I'm sure this is a simple thing to fix. What should I do? TIA!
<VirtualHost 172.21.5.5>
ServerName jones.com
# this line applies to Apache2+mod_perl2 only
PerlModule Apache2 Apache::compat
Alias /rt "/opt/rt3/share/html"
#PerlModule Apache::DBI
#PerlRequire /opt/rt3/bin/webmux.pl
<Directory /opt/rt3/share/html>
AllowOverride All
Options ExecCGI FollowSymLinks
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
<Location /rt>
RewriteEngine On
# RedirectMatch permanent (.*)/$ $1/index.html
AddDefaultCharset UTF-8
SetHandler perl-script
PerlHandler RT::Mason
</Location>
</VirtualHost>
More information about the rt-users
mailing list