Hallo,
hat die FastCGI-Variante von Herrn Keppler schon jemand erfolgreich aktiviert?
ich erhalte folgenden Fehler:
[Thu Jul 25 17:16:30 2013] [warn] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
[Thu Jul 25 17:16:30 2013] [error] Premature end of script headers: info.php
suexec.log meldet ok:
[2013-07-25 17:16:30]: uid: (1002/web1) gid: (1002/web1) cmd: php-fcgi-starter
Suche ergab Hinweise auf Rechteprobleme bei den Dateien oder/und
vhost-Fehler.
Ein Aufruf auf der shell bringt die richte Version 5.4
/opt/php54/bin/php-cgi /var/www/web1/htdocs/info.php
hat jemand eine Idee, dem Fehler auf die Schliche zu kommen?
Vielen Dank.
Hier die conf-Dateien:
.httpd.conf (wird auch im vhost eingebunden)
<IfModule mod_fcgid.c>
FcgidBusyTimeout 3600
FcgidMaxRequestLen 134217728
</IfModule>
FCGIWrapper /var/www/web1/conf/php54/php-fcgi-starter .php
FCGIWrapper /var/www/web1/conf/php54/php-fcgi-starter .php5
php-fcgi-starter
#!/bin/sh
umask 0022
PHPRC=/var/www/web1/conf/php54/
export PHPRC
PHP_FCGI_CHILDREN=10
export PHP_FCGI_CHILDREN
PHP_FCGI_MAX_REQUESTS=250
export PHP_FCGI_MAX_REQUESTS
PHP_FCGI_BUSY_TIMEOUT=3600
export PHP_FCGI_BUSY_TIMEOUT
PHP_FCGI_MAX_REQUESTLEN=134217728
export PHP_FCGI_MAX_REQUESTLEN
exec /opt/php54/bin/php-cgi