The PHP Interpreter
Go to file
2011-07-17 11:41:57 +00:00
build find option '-not' is not POSIX compliant 2011-07-13 23:28:48 +00:00
ext Updated is_a() and is_subclass_of() tests as per the removed E_WARNING from r313162 which was inspired by discussion after r312904 and PHP Bug #53727 2011-07-15 19:17:22 +00:00
main Back to -dev 2011-07-14 05:39:29 +00:00
netware
pear
sapi - Implemented FR #55166 (Added process.max to control the number of process FPM can fork) 2011-07-17 11:41:57 +00:00
scripts Relax autoconf support from 2.60 to 2.59. This is the version available on Centos/RHEL/Oracle Linux 5.6 2011-06-08 01:25:35 +00:00
tests - Fixed tests 2011-06-24 19:23:25 +00:00
TSRM Zend Signal Handling 2011-06-22 14:23:21 +00:00
win32 - fix decl 2011-07-14 10:54:39 +00:00
Zend - Added a check for an enviroment variable (ZEND_DONT_UNLOAD_MODULES) that, if 2011-07-14 12:21:15 +00:00
.gdbinit
acinclude.m4 Revert part of the fix for #53339 2011-05-19 05:43:48 +00:00
buildconf
buildconf.bat
CODING_STANDARDS
config.guess
config.sub
configure.in Back to -dev 2011-07-14 05:39:29 +00:00
CREDITS
EXTENSIONS take over mantainership on snmp extension 2011-06-18 07:12:35 +00:00
footer
genfiles
header 2011 2011-04-23 21:14:10 +00:00
INSTALL Regenerate from the doc sources 2011-04-27 09:29:10 +00:00
LICENSE Update copyright year for the license 2010-10-05 22:58:19 +00:00
ltmain.sh
makedist
Makefile.frag
Makefile.gcov - Fixed bug #52019 (make lcov doesn't support TESTS variable anymore) 2010-06-11 14:04:57 +00:00
Makefile.global - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and one SAPI module the same time) 2010-11-13 23:13:07 +00:00
makerpm
NEWS - Implemented FR #55166 (Added process.max to control the number of process FPM can fork) 2011-07-17 11:41:57 +00:00
php5.spec.in
php.gif
php.ini-development Fix common typos in the source code (Reported in Bug #54065) 2011-04-03 21:46:52 +00:00
php.ini-production Fix common typos in the source code (Reported in Bug #54065) 2011-04-03 21:46:52 +00:00
README.EXT_SKEL
README.EXTENSIONS
README.input_filter
README.MAILINGLIST_RULES
README.namespaces
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API - Added 'p' type specifier 2011-06-07 22:22:01 +00:00
README.PHP4-TO-PHP5-THIN-CHANGES
README.REDIST.BINS
README.RELEASE_PROCESS Updated qa-release.php notes as per the new qa-release.php syntax 2011-05-30 23:26:33 +00:00
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.SVN-RULES update the branches list 2011-06-15 23:19:30 +00:00
README.TESTING
README.TESTING2
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
README.Zeus
run-tests.php - Fixed bug #55080 (Deprecated call in run--test.php) 2011-07-01 23:13:53 +00:00
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
stub.c
svnclean.bat
UPGRADING Added XsltProcessor::setSecurityPrefs($options) and getSecurityPrefs() 2011-07-12 04:58:38 +00:00
UPGRADING.INTERNALS - Added section for build system changes in UPGRADING.INTERNALS 2010-11-18 10:43:01 +00:00
vcsclean

Using PHP 5 with the Zeus Web Server
-----------------------------------

Zeus fully supports running PHP in combination with our
webserver. There are three different interfaces that can be used to
enable PHP:

* CGI
* ISAPI
* FastCGI

Of the three, we recommend using FastCGI, which has been tested and
benchmarked as providing the best performance and reliability.

Full details of how to install PHP are available from our
website, at:

http://support.zeus.com/products/php.html

If you have any problems, please check the support site for more
up-to-date information and advice.


Quick guide to installing CGI/FastCGI with Zeus
-----------------------------------------------

Step 1 - Compile PHP as FastCGI.

Compile as follows:
        ./configure --enable-fastcgi
        make

Note that PHP has many options to the configure script -
e.g. --with-mysql. You will probably want to select your usual options
before compiling; the above is just a bare minimum, for illustration.

After compilation finishes, you will be left with an executable
program called 'php'. Copy this into your document root, under a
dedicated FastCGI directory (e.g. $DOCROOT/fcgi-bin/php)


Step 2 - configure Zeus

Four stages:
        -  enable FastCGI
        -  configure FastCGI
        -  setup alias for FastCGI
        -  setup alias for PHP

1) Using the admin server, go to the 'module configuration' page for
your virtual server, and ensure that 'fastcgi' is enabled (select the
tickbox to the left).

2) While we can run FastCGI's locally, there are known problems with
some OS's (specifically, the communication between web server and
FastCGI happens over a unix domain socket, and some OS's have trouble
sustaining high connection rates over these sockets). So instead, we
are going to set up the PHP FastCGI to run 'remotely' over localhost
(this uses TCP sockets, which do not suffer this problem). Go to the
'fastcgi configuration' page, and under 'add remote fastcgi':
        Add Remote FastCGI
                Docroot path            /fcgi-bin/php
                Remote machine          localhost:8002
The first entry is where you saved PHP, above.
The second entry is localhost:<any unused port>
We will start the FastCGI listening on this port shortly.
Click 'update' to commit these changes.

3) Go to the path mapping module and add an alias for FastCGI:
        Add Alias
                Docroot path            /fcgi-bin
                Filesystem directory    /path/to/docroot/fcgi-bin
                Alias type              fastcgi
Click 'update' to commit these changes

4) Also on the path mapping module, add a handler for PHP:
        Add handler
                File extension          php
                Handler                 /fcgi-bin/php
Click 'update' to commit these changes

Finally restart your virtual server for these changes to take effect.


Step 3 - start PHP as a FastCGI runner

When you start PHP, it will pre-fork a given number of child processes
to handle incoming PHP requests. Each process will handle a given
number of requests before exiting (and being replaced by a newly
forked process). You can control these two parameters by setting the
following environment variables BEFORE starting the FastCGI runner:

PHP_FCGI_CHILDREN - the number of child processes to pre-fork. This
variable MUST be set, if not then the PHP will not run as a FastCGI.
We recommend a value of 8 for a fairly busy site. If you have many,
long-running PHP scripts, then you may need to increase this further.

PHP_FCGI_MAX_REQUESTS - the number of requests each PHP child process
handles before exiting. If not set, defaults to 500.

To start the FastCGI runner, execute '$ZEUSHOME/web/bin/fcgirunner
8002 $DOCROOT/fcgi-bin/php'.  Substitute the appropriate values for
$ZEUSHOME and $DOCROOT; also substitute for 8002 the port you chose,
above.

To stop the runner (e.g. to experiment with the above environment
variables) you will need to manually stop and running PHP
processes. (Use 'ps' and 'kill'). As it is PHP which is forking lots
of children and not the runner, Zeus unfortunately cannot keep track
of what processes are running, sorry. A typical command line may look
like 'ps -efl | grep $DOCROOT/fcgi-bin/php | grep -v grep | awk
'{print $4}' | xargs kill'