The PHP Interpreter
Go to file
2005-04-08 00:37:35 +00:00
build Spell "overridden" correctly. 2005-04-07 23:33:03 +00:00
ext Fixed bug #32533 (proc_get_status() returns the incorrect process status). 2005-04-07 23:07:45 +00:00
main Bug #32614 - prevent from crahsing with segfault on solaris if fdopen() fails - this fixes NOT the stdio-problem on solaris! 2005-04-07 07:29:14 +00:00
netware changing the windows style path seperator in netinet\in.h to netinet/in.h 2005-02-25 06:31:06 +00:00
pear update to support local install, remove -n switch 2005-04-02 23:50:53 +00:00
regex fix yet another annoying compile warning 2004-08-13 14:59:58 +00:00
sapi added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication. 2005-04-04 15:06:36 +00:00
scripts Fix the echo/backquote issues + aclocal 2005-04-07 22:03:02 +00:00
tests - Add test 2005-03-07 22:24:18 +00:00
TSRM Merge 2005-03-20 09:03:40 +00:00
win32 Updated install instructions from the documentation project (Philip Olson) 2005-03-30 13:15:05 +00:00
Zend ChangeLog update 2005-04-08 00:37:35 +00:00
.gdbinit
acconfig.h.in
acinclude.m4 - Cleanup a bit. And make use of shtool mkdir 2005-04-07 20:39:02 +00:00
buildconf - Fix buildconf with BSD make 2005-02-03 17:42:42 +00:00
buildconf.bat
ChangeLog ChangeLog update 2005-04-08 00:37:35 +00:00
ChangeLog.1999.gz
ChangeLog.2000.gz
ChangeLog.2001.gz
ChangeLog.2002.gz
ChangeLog.2003.gz
ChangeLog.2004.gz - Compressed 2004 Changelog 2005-01-10 15:07:51 +00:00
CODING_STANDARDS
config.guess - Applied some patches to fix issues with e.g. ia_64 and s390 2005-02-15 08:51:10 +00:00
config.sub - Applied some patches to fix issues with e.g. ia_64 and s390 2005-02-15 08:51:10 +00:00
configure.in - Prevent compiling shared extensions when --enable-versioning is used 2005-03-26 03:09:09 +00:00
CREDITS
cvsclean
cvsclean.bat
EXTENSIONS cleanup 2005-02-03 15:46:15 +00:00
footer
genfiles
header
INSTALL Updated install instructions from the documentation project (Philip Olson) 2005-03-30 13:15:05 +00:00
LICENSE - Increment year in copyright notice 2005-03-25 16:13:47 +00:00
ltmain.sh - Applied some patches to fix issues with e.g. ia_64 and s390 2005-02-15 08:51:10 +00:00
makedist
Makefile.frag
Makefile.global
makerpm
NEWS Keep removed stuff in top.. 2005-04-06 16:07:24 +00:00
php5.spec.in
php.gif
php.ini-dist Make sure php_mbstring.dll is first to getting loaded..(bug #32552) 2005-04-02 23:04:02 +00:00
php.ini-recommended - If this is supposed to be the configuration we recommend, 2005-04-04 07:55:13 +00:00
README.CVS-RULES - Changed to reflect "current practise" 2005-03-22 09:01:13 +00:00
README.EXT_SKEL
README.EXTENSIONS
README.input_filter Fixed zend_parse_parameters arguments... 2004-06-24 08:49:00 +00:00
README.PARAMETER_PARSING_API
README.PHP4-TO-PHP5-THIN-CHANGES new incompatibilities. maybe someone from the doc group will update the 2004-08-24 22:01:58 +00:00
README.QNX
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.TESTING
README.TESTING2
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
README.Zeus
run-tests-config.php
run-tests.php - Reword the send-report-part a bit. (bug #32624) 2005-04-07 20:22:55 +00:00
server-tests.php - Rename test script 2005-03-10 14:04:54 +00:00
snapshot
stamp-h.in
stub.c
TODO Remove done stuff 2005-01-09 00:18:28 +00:00
TODO-5.1 Re-add my patch for .ini variable access. 2004-08-18 16:58:20 +00:00
TODO-PHP5
TODO.BUILDv5

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'