mirror of
https://github.com/php/php-src.git
synced 2026-04-10 09:33:06 +02:00
SAPI and down into the individual SAPI modules. I have made the appropriate changes in all the SAPI modules, but please verify these. The reason for this change is that Apache sometimes will feed PHP a request_method of GET but have r->header_only set to true. This happens in an ErrorDocument redirect. In this same scenario we want to preserve the status code as well instead of just overwriting it with a 200 and losing this information. For now the other sapi modules act exactly as before since they probably do not make this distinction, and they may not even have a valid response code this early in the request. @ Fix HEAD request bug on an Apache ErrorDocument redirect and preserve @ the status code across the redirect as well. (Rasmus)
README FOR THTTPD MODULE (by Sascha Schumann) ($Date$) This is a SAPI module for PHP 4.0 supporting thttpd, the tiny, turbo, throttling HTTP server by Jef Poskanzer. The module contains a patch against version 2.10 of thttpd. The patch adds hooks to thttpd to call PHP, if a filename matches *.php. This patch will be applied when you install PHP. While functional, this module exists primarily to demonstrate the ability of PHP to work in almost every web server environment. REQUIRED DOWNLOADS 1. thttpd 2.xx Full Distribution: http://www.acme.com/software/thttpd/ 2. PHP 4.0.x Beta Versions: http://www.php.net/version4/ Snapshots: http://va.php.net/~sas/snapshots/ BUILD INSTRUCTIONS 1. Extract software packages $ gunzip -c thttpd-2.xx.tar.gz | tar xf - $ gunzip -c php-*.tar.gz | tar xf - 2. Prepare PHP $ cd php-* $ ./configure \ --with-thttpd=../thttpd-2.xx \ <further PHP options> $ make install $ cd .. You can see the list of valid PHP options by executing $ ./configure --help 3. Configure, compile, install thttpd Now follow the thttpd instructions. The Makefile template of thttpd was changed to automatically use the components required by PHP.