(02-19-2010 10:13 AM)GTR Wrote: (02-19-2010 10:02 AM)joximu Wrote: post the fcgid_ispcp.conf ...
Code:
<IfModule mod_fcgid.c>
AddHandler fcgid-script .php .php5
SocketPath /var/lib/apache2/fcgid/sock
IdleTimeout 600
IdleScanInterval 120
BusyTimeout 300
BusyScanInterval 120
ErrorScanInterval 3
ZombieScanInterval 3
ProcessLifeTime 900
SpawnScoreUpLimit 10
SpawnScore 1
TerminationScore 2
MaxProcessCount 200
DefaultMaxClassProcessCount 10
DefaultMinClassProcessCount 1
IPCConnectTimeout 900
IPCCommTimeout 900
MaxRequestsPerProcess 500
</IfModule>
line 29:
Code:
SocketPath /var/lib/apache2/fcgid/sock
the problem is this line in the ispcp.conf for my domains:
Code:
Include /etc/apache2/mods-available/fcgid_ispcp.conf
this line is within <VirtualHost></Virtualhost> but it seems that the new version of apache2 or fcgid whatever doesn't accept this.
Hi
normally you don't include the module-config in your virtualhost configs.
you need to enable fcgid_ispcp (eg. "a2enmod fcgid_ispcp") so the module is loaded globally. And also remove the line in the ispcp.conf
Of corse if you need customer specific fcgid settings - then maybe follow killburns instructions...
/J