Comments on How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Lenny

How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Lenny This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Debian Lenny. 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.

15 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Robert

Will "aptitude install apache2 apache2-suexec libapache2-mod-fcgid php5-cgi" install apache2-mpm-worker or apache2-mpm-event ?

And also, is HTTP Authentication now available when PHP is running in (fast)CGI mode ? (As apposed to PHP running as an Apache module.)

By: Robert

OK, I found the answer to my first question with the -sPD flags. Thank God mpm-worker is installed and not the experimental mpm-event.:

sudo aptitude -sPD install apache2 apache2-suexec libapache2-mod-fcgid php5-cgi

Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done The following NEW packages will be installed: apache2 apache2-mpm-worker{a} (D: apache2) apache2-suexec apache2-utils{a} (D: apache2.2-common) apache2.2-bin{a} (D: apache2-mpm-worker, D: apache2.2-common) apache2.2-common{a} (D: apache2, D: apache2-mpm-worker, D: apache2-suexec, D: libapache2-mod-fcgid) libapache2-mod-fcgid libapr1{a} (D: apache2-utils, D: apache2.2-bin, D: libaprutil1) libaprutil1{a} (D: apache2-utils, D: apache2.2-bin, D: libaprutil1-dbd-sqlite3, D: libaprutil1-ldap) libaprutil1-dbd-sqlite3{a} (D: apache2.2-bin) libaprutil1-ldap{a} (D: apache2.2-bin) php5-cgi php5-common{a} (D: php5-cgi) ssl-cert{a} (R: apache2.2-common) 0 packages upgraded, 14 newly installed, 0 to remove and 0 not upgraded. Need to get 7,550kB of archives. After unpacking 18.6MB will be used. Do you want to continue? [Y/n/?] Would download/install/remove packages.

Any PHP programmers who can answer my second question about HTTP authentication ?

(It would be beneficial to others as well, who have scripts which depend on HTTP Authentication at some stage, to know this before installing PHP as (fast)CGI.)

By: Robert

Apparently one still has to use workarounds to get HTTP Authentication to work in (fast)CGI mode :

http://www.modwest.com/help/kb5-103.html

http://www.besthostratings.com/articles/http-auth-php-cgi.html

By: Anonymous

Thanks. I followed your HOWTO and it works to the point of calling a .php file. When browsing http://localhost/index.php, Firefox tells me "You have chosen to open index.php, which is a .php file", and asks me where to save it. It seems Apache does not properly handle the PHP. And idea?

By: traxxus

Same problem here. If i go to www.server.com/info.php my browser wants to download the file. seems like problems with php.... i followed the tutorial step by step....


Please help.

By: George Negoita

Quote from mod_fcgid's documentation:

"By default, PHP stops accepting new FastCGI connections after handling 500 requests; unfortunately, there is a potential race condition during the PHP cleanup code in which PHP can be shutting down but still have the socket open, so mod_fcgid under heavy load can send request number 501 to PHP and have it "accepted", but then PHP appears to simply exit, causing errors."

This is solved by setting MaxRequestsPerProcess to the same value as PHP_FCGI_MAX_REQUESTS. So, for your example, you should specify a value of 5000 for MaxRequestsPerProcess (unless debian comes with a default setting of 5000 or, unless you're reading this how-to just for fun, without having the need for a stable setup).

You can test this with ab:

ab -n 10000 -c 200 http://www.example1.com/info.php

You should get 0 failed requests.

By: ashish

yes it says 0 failed requests, but still my info.php is not getting opened up in the browser. It's there in a downloadable mode though.


By: ashish khurana

got it. You need to install "libapache2-mod-php5" too.

By:

Well, actually, we did test this, and it was working for us. Maybe this has changed with recent Debian updates, but at the time of writing, it was working. We don't just copy old tutorials, we always test them, sometimes even twice or thrice, so your accusation is totally wrong and inappropriate.

BTW, if you have problems with a tutorial, please use the forum to ask for help. There's even this statement above the comment area: "Please do not use the comment function to ask for help! If you need help, please use our forum."

By: Webcyclopedie

Thanks for this, it works perfectly for me on Debian Lenny 5.0.4 64 Bits.

Keep your good work.

By: Anonymous

This article is absolutely worthless, and I'm disappointed that this site is even displaying it.

 It appears the author just copied, word for word, the same article for Debian Etch and claimed it worked for Debian Lenny. Well, it doesn't. 

 As others have pointed out, at the end of this article you end up with a server that isn't running php at all- instead it's just serving out the source code directly. Despite people bringing this up the original author hasn't bothered updating or even responding to the comments.

 This article should be erased until someone who is actually going to bother testing what they write gives it a go.

By: Heine Deelstra

Debian Lenny comes with a default vhost with /var/www as its document root.

 By accessing the server via this default vhost (using ip for example), it is then possible to download scripts from the other vhosts, by simple path traversal.

 The default vhost must be disabled.

By: Christoph

Hi, what file permissions are to be set for the directories up to the website directory? I had permanent "permission denied" errors until I made the directories world readable.

 But is this still safe?

 The problem is, that the Apache itself has to get to the web page directory, if he doesn't belong to the users group or if the permissions are not set world-readable it cannot get there.

 I think I maybe misunderstood something?

 

By: Anonymous

fcgid lack the external fastcgi server feature, which means you cannot connect to php-fpm, the official php solution for fastcgi. If you don't wanna use php-fpm, that's fine. you can use fcgid to manage the processes, but you will lose the benefits which php-fpm can bring you and let you enjoy fastcgi. e.g. fastcgi_finish_request(), let you finish the request and do other server-side work.

By: trebor

Sorry!

The line is no more OK in the new Apache2.4

"vi /etc/apache2/sites-available/web2"

You have to write it like ".../sites-available/web2.conf". The .conf is mandatory by the new apache!

AND you have to define the vhost with

"Require all granted" where this example

has writen:      Order Deny,Allow      Deny from all

I also have diesabled the Option

# PHP_FixPathinfo_Enable 1

then the website with phpinfo got visible by the browser!

But thanks for the description here! ;)