You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Zeev Suraski 3d3d8881c6 Cleaner way of making sure resources start at 1 and not 0... 25 years ago
TSRM support unc style paths 25 years ago
Zend Cleaner way of making sure resources start at 1 and not 0... 25 years ago
build Remove config.h instead of php_config.h 25 years ago
ext Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. 25 years ago
main Fix the arg_separator behaviour. Only & or ; is allowed as separators so no need to use the ini setting here. 25 years ago
pear pgsql.php 25 years ago
regex Overall UNIX build system improvements: 26 years ago
sapi Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. 25 years ago
scripts - Fix copyright notices with 2001 25 years ago
tests more win32 fixes 25 years ago
win32 added com.h 25 years ago
CODING_STANDARDS Updated to reflect recent discussions on php-dev. 25 years ago
CREDITS - Update link 25 years ago
ChangeLog ChangeLog update 25 years ago
EXTENSIONS Remove experimental status from bz2 25 years ago
INSTALL Added a note about --enable-versioning working with IRIX 6.5 25 years ago
LICENSE Sigh, that should be the last one :I 26 years ago
Makefile.in @ New FastCGI server module 25 years ago
NEWS More news. 25 years ago
README.BCMATH Moving README-BCMATH to README.BCMATH 26 years ago
README.CVS-RULES One more notice about using names with NEWS entries. 25 years ago
README.EXT_SKEL support for short comments was added to ext_skel proto files 25 years ago
README.QNX PHP 4.0 27 years ago
README.SELF-CONTAINED-EXTENSIONS Add note about software requirements 26 years ago
README.Zeus Altered README.Zeus to give instructions on building FastCGI. 25 years ago
RELEASE_PROCESS Adding readme for release process, this needs to live somewhere and here seems as good a place as any. 25 years ago
TODO PHP3_TLS_*() macros are no longer used in ext/dav/dav.c, ext/ldap/ldap.c. 25 years ago
acconfig.h.in Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE. 26 years ago
acinclude.m4 Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. 25 years ago
apidoc-zend.txt Close bug #7325. Patches by djm@web.us.uu.net. 25 years ago
apidoc.txt I think that is the preferred way as of now 27 years ago
buildconf Build compat bridge for makes which support only the BSD .include command. 26 years ago
config.guess Upgrade to Libtool 1.3.5. 26 years ago
config.sub Upgrade to Libtool 1.3.5. 26 years ago
configure.in Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. 25 years ago
cvsclean "User interface" for removing all files which are ignored by cvs 26 years ago
dynlib.m4 - Fix copyright notices with 2001 25 years ago
footer PHP 4.0 27 years ago
genfiles Update to reflect the changes in the parsers/scanners 25 years ago
header add year 2001 to header 25 years ago
ltconfig Should be ok to use CC here 25 years ago
ltmain.sh Temporary fix for mac os x stuff. 25 years ago
makedist - No need to generate number.c and number.h anymore. 25 years ago
makerpm Small fix: Description still referred to package as PHP3. 26 years ago
php.ini-dist Added php_dbx.dll. 25 years ago
php.ini-optimized added [com] section 25 years ago
php.ini-recommended added [com] section 25 years ago
php4.gif temporary icon for RPMs until Colin gets back and can make us a spiffy new one 27 years ago
php4.spec.in added workaround for Solaris PIC weirdness. 27 years ago
run-tests.php I don't like to commit this over and over either, but this client definitely seems to dislike branches 25 years ago
snapshot Integration of -ng changes. Changes: 26 years ago
stamp-h.in # Fix ColorResolve bogosity 26 years ago
strtok_r.c Get Win32 to compile again 26 years ago
stub.c Add newline. Recent GCC snapshots segfault, if the input file is completely 25 years ago

README.Zeus

Using PHP4 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 FastCGI with Zeus
-------------------------------------------

Step 1 - obtain and install FastCGI development kit.

Grab the package from:
http://www.fastcgi.com/dist/devkit_2.2.0.tar.gz

Extract the package and follow the instructions:
./configure
make
make export
(run the last as root)

This will install to /usr/local/lib/libfcgi.a
and /usr/local/include/*fcgi*



Step 2 - Compile PHP as FastCGI.

Compile as follows:
./configure --with-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 3 - 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 4 - 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. If not
set, defaults to 8.

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'