Na man könnte ja erstmal abseits von syscp mit nem manuellen editieren der Config testen, ob mod_fcgid den erwünschten Effekt hat. Eines der folgenden Beispiel aus der Doku sollte ja erstmal funzen.
Quote:#This is for fastcgi-mode PHP (UNIX)
LoadModule fcgid_module modules/mod_fcgid.so
<Directory /usr/local/apache2/htdocs/php>
SetHandler fcgid-script
FCGIWrapper /usr/local/bin/php .php
# You need mod_fcgid version >= 2.1 to support arguments in FCGIWrapper, if you want
# FCGIWrapper "/usr/local/bin/php -c /etc/" .php
Options ExecCGI
allow from all
</Directory>
Quote:#This works too:
LoadModule fcgid_module modules/mod_fcgid.so
AddHandler fcgid-script .php
<Directory /usr/local/apache2/htdocs/php>
FCGIWrapper /usr/local/bin/php .php
# You need mod_fcgid version >= 2.1 to support arguments in FCGIWrapper, if you want
# FCGIWrapper "/usr/local/bin/php -c /etc/" .php
Options ExecCGI
allow from all
</Directory>
# Please make sure:
# php is configured with --enable-fastcgi option
# check error_log(with debug level), if any thing goes wrong