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.
 
 
 
 
 
 
Sebastian Bergmann 2ff115b01e Add note on which version of Apache 2 this SAPI module is compatible with. 24 years ago
..
CREDITS 2nd step towards auto-credits 25 years ago
README Add note on which version of Apache 2 this SAPI module is compatible with. 24 years ago
apache_config.c Maintain headers. 24 years ago
config.m4 Please welcome the new build system. 24 years ago
php.sym An Apache 2.0 Filter for PHP, completely from scratch. 26 years ago
php4apache2.dsp let apache2 filter build under win32 25 years ago
php_apache.h Maintain headers. 24 years ago
php_functions.c Use {NULL, NULL, NULL} to terminate function entry. 24 years ago
sapi_apache2.c Sync with Apache2 Filter API change. 24 years ago

README

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

Get the latest Apache 2.0 sources from CVS and install it. This
SAPI module is known to work with Apache 2.0.34-dev.

$ 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:

<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
</Files>

That's it. Now start bin/httpd.

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)