
Hello, On Sat, Aug 13, 2005 at 05:42:52PM -0300, Guido Malato wrote:
I have OTRS running just fine on a RH9 server with Apache 2, but... when I try to use mod_perl2 it looks like all session information gets messed up: you login using user's A credentials and OTRS logs you in as user B; or, you click a link, any link, like "admin" and it serves you with any other page.
Yes, thats mod_perl2 trouble :(.
What version of mod_perl2 and CGI.pm have you installed.
Use CGI.pm newer then 3.05, if mod_Perl2 2.x is installed. With
mod_perl2 1.x use CGI.pm 3.05. Also the following apache configuration
might help you..., its works for my with CGI.pm 3.11 and mod_perl2 2.x:
-----
# --
# added for OTRS (http://otrs.org/)
# --
# agent, admin and customer frontend
ScriptAlias /otrs/ "/opt/otrs/bin/cgi-bin/"
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
# load all otrs modules
Perlrequire /opt/otrs/scripts/apache2-perl-startup.pl
# Apache::Reload - Reload Perl Modules when Changed on Disk
PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload
PerlModule Apache2::RequestRec
# set mod_perl2 options