Comments on How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 8.10

How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 8.10 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Ubuntu 8.10. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.

2 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: George Negoita

I've spotted another problem in this setup. You should never use PHP_FCGI_CHILDREN while using mod_fcgid, because mod_fcgid will never send more than one request at a time to a running php process.

You cand find more info here: http://wherethebitsroam.com/blogs/jeffw/apache-php-fastcgi-and-phpfcgichildren

By: Anonymous

yes,I noticed this problem too. according to http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html the PHP_FCGI_CHILDREN should be disabled.