Quote:
Originally Posted by jumba
Thanks for the quick answer.
I created a new site with suexec and fastcgi.
There are no jobs in the queue.
Code:
<Directory /var/www/test.zz>
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
<VirtualHost *:80>
DocumentRoot /var/www/test.zz/web
ServerName test.zz
ServerAlias www.test.zz
ServerAdmin webmaster@test.zz
ErrorLog /var/log/ispconfig/httpd/test.zz/error.log
<Directory /var/www/test.zz/web>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/clients/client1/web4/web>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
# suexec enabled
SuexecUserGroup web4 client1
# php as fast-cgi enabled
<IfModule mod_fcgid.c>
# SocketPath /tmp/fcgid_sock/
IdleTimeout 3600
ProcessLifeTime 7200
# MaxProcessCount 1000
DefaultMinClassProcessCount 3
DefaultMaxClassProcessCount 100
IPCConnectTimeout 8
IPCCommTimeout 360
BusyTimeout 300
</IfModule>
<Directory /var/www/test.zz/web>
AddHandler fcgid-script .php .php3 .php4 .php5
FCGIWrapper /var/www/php-fcgi-scripts/web4/.php-fcgi-starter .php
Options +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/clients/client1/web4/web>
AddHandler fcgid-script .php .php3 .php4 .php5
FCGIWrapper /var/www/php-fcgi-scripts/web4/.php-fcgi-starter .php
Options +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
# add support for apache mpm_itk
<IfModule mpm_itk_module>
AssignUserId web4 client1
</IfModule>
</VirtualHost>
|
The vhost file is ok. Suexec is enabled and the vhost also uses fcgi.
1) How exactly didn you access the contents of this site? By entering
http://www.test.zz in the webbrowser?
2) Add a phpinfo file in this vhost, then open it with the webbrowser and post it here.