php-src/sapi/apache2filter
Sascha Schumann 6d643eb035 Break up the INSTALL_IT line into comprehensible pieces
and fix a bug related to [..] quotes.
2002-07-11 14:41:03 +00:00
..
apache_config.c Made php_admin_value work outside <location> and <directory> blocks. 2002-06-22 15:31:44 +00:00
config.m4 Break up the INSTALL_IT line into comprehensible pieces 2002-07-11 14:41:03 +00:00
CREDITS - Added Aaron Bannert as maintainer 2002-05-08 05:17:59 +00:00
php4apache2.dsp Reverting my previous patch. 2002-04-22 12:00:53 +00:00
php_apache.h This patch implements a new Apache2 directive called PHPINIDir that 2002-04-18 22:10:57 +00:00
php_functions.c That macro is and always was hopelessly broken, which is why it's 2002-05-30 06:07:28 +00:00
php.sym An Apache 2.0 Filter for PHP, completely from scratch. 2000-10-26 17:55:05 +00:00
README Mention Apache 2.0.40. 2002-06-28 15:16:28 +00:00
sapi_apache2.c - YAAC: I hope this is the last one! 2002-06-28 14:45:10 +00:00

WHAT IS THIS?

    This module exploits the layered I/O support in Apache 2.0.

HOW DOES IT WORK?
    
    In Apache 2.0, you have handlers which generate content (like
    reading a script from disk). The content goes then through
    a chain of filters. PHP can be such a filter, so that it processes
    your script and hands the output to the next filter (which will
    usually cause a write to the network).

DOES IT WORK?

    It is experimental as interfaces in Apache 2.0 might change in the
    future.

HOW TO INSTALL

    This SAPI module is known to work with Apache 2.0.40.

        $ cd apache-2.x
        $ cd src
        $ ./configure --enable-so
        $ make install

    For testing purposes, you might want to use --with-mpm=prefork.
    (Albeit PHP also works with threaded MPMs.)

    Configure PHP 4:

        $ cd php-4.x
        $ ./configure --with-apxs2=/path/to/apache-2.0/bin/apxs
        $ make install
   
    At the end of conf/httpd.conf, add:

        AddType application/x-httpd-php .php

    That's it. Now start bin/httpd.

HOW TO CONFIGURE

    The Apache 2.0 PHP module supports a new configuration directive that
    allows an admin to override the php.ini search path. For example,
    place your php.ini file in Apache's ServerRoot/conf directory and
    add this to your httpd.conf file:

        PHPINIDir "conf"

DEBUGGING APACHE AND PHP
    
    To debug Apache, we recommened:

        1. Use the Prefork MPM (Apache 1.3-like process model) by
           configuring Apache with '--with-mpm=prefork'.
        2. Set the variable "ONE_PROCESS" to 1 and export it before
           starting Apache/a debugger.

    If you want to debug a part of the PHP startup procedure, set a 
    breakpoint on 'load_module'. Step through it until apr_dso_load() is 
    done. Then you can set a breakpoint on any PHP-related symbol.

TODO

    PHP functions like apache_sub_req (see php_functions.c)
    Protocol handlers
    Passing script data to engine without temporary file
    Syntax Highlighter (relies on files as well)