1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 17:43:13 +02:00
Files
archived-php-src/sapi/roxen
David Hedbor 5f883ac86d - Fixed a couple of POST problems.
- Use virtual path functionality when available, to set the cwd of the
script to it's own directory prior to starting it.
- Fixed a bug in php_roxen_sapi_header_handler.
2000-04-12 22:59:46 +00:00
..
Use
2000-03-06 19:26:39 +00:00
2000-03-02 22:13:24 +00:00
2000-04-12 22:59:46 +00:00

Roxen PHP support. Early version. Don't expect to be able to get it to
work. Requires Pike 0.7.79 and Roxen 1.4. Anything less won't work.

The module is now thread safe, in a couple of different modes. First
mode, the default, uses a process global PHP lock in the Roxen
module. This means that all PHP-requests are serialized (ie only one
script is executed at any one time). The second option is using ZTS
(Zend Thread Safe mode). Unless --enable-roxen-zts is specified, this
won't be used.

This solution now works fine and is recommended. Multiple PHP4
requests will be run in parallell. The maximum number of parallell
PHP4-execution is limited to the number of handle threads Roxen is
started with.

- The Author, David Hedbor <neotron@php.net>