Am 27.08.2012 09:29, schrieb Mik J: > Hello Christian, > > Thank you for your answer. > > I didn't install RT 4.0.6 because there was a compatibility version issue > with URI (>= 1.59). Mine was older. > Now that I have and updated URI perl module, I installed RT 4.0.6 > My second problem is the Apache virtualhost configuration. I use Apache 1.3.29 > So far it looks like this: > <VirtualHost *> > ServerAdmin root@localhost > DocumentRoot /htdocs > ServerName 192.168.99.1 > PerlModule Apache::PerlRun > <Location /rtx/> > AddDefaultCharset UTF-8 > SetHandler perl-script > PerlHandler Apache::PerlRun > PerlRequire /var/www/htdocs/rty/mystartup.pl > Options ExecCGI Indexes FollowSymLinks > PerlSendHeader On > Order allow,deny > Allow from all > </Location> > ErrorDocument 404 /404.html > ErrorLog logs/192.168.99.1-error_log > CustomLog logs/192.168.99.1-access_log common > </VirtualHost> > > Should I use RT::Mason as the PerlHandler ? (Many wikis talk about it) > In my setup I have Apache chrooted, so mod_perl loads the installed modules > at startup (I specify the list in mystartup.pl) > As you can see RT is installed in /htdocs/rty directory. Do you have any > comment on my Apache configuration ? > > Thank you
You should read docs/web_deployment.pod or the online version: https://github.com/bestpractical/rt/blob/stable/docs/web_deployment.pod Notice that mod_perl 1.xx (which I think apache 1.3 is using) isn't supported. Chris