hoffe einer von euch weiß hier einen Rat.
Habe OTRS 2.4.6 mit einem Apache2 2.2.13 am laufen.
Über die Standardkonfiguration scheinen auch die perl-Module richtig eingebunden zu sein.
Doch sobald ich den angelegte vhost benutze, meckert die "Support Assessment" Seite von OTRS:
Code: Select all
Check for CGI Accelerator. You should use FastCGI or mod_perl to increase your performance. Critical
Code: Select all
<VirtualHost <serverip>:80>
UseCanonicalName Off
DocumentRoot /opt/otrs/
ServerName otrs.<meinhost>.com:80
ServerAdmin webmaster@<meinhost>.com
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
ScriptAlias /otrs/ "/opt/otrs/bin/cgi-bin/"
ScriptAlias / "/opt/otrs/bin/cgi-bin/"
Perlrequire /opt/otrs/scripts/apache2-perl-startup.pl
PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload
<Location /otrs>
ErrorDocument 403 /index.pl
Options +ExecCGI
SetHandler perl-script
PerlHandler ModPerl::Registry
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
PerlSendHeader On
PerlSetupEnv On
Order allow,deny
Allow from all
DirectoryIndex index.pl
</Location>
<Directory "/opt/otrs/bin/cgi-bin">
ErrorDocument 403 /index.pl
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
DirectoryIndex index.pl
</Directory>
<Directory "/opt/otrs/var/httpd/htdocs/">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

Viele Grüße