History log of /PHP-5.3/sapi/apache/php_apache.c (Results 76 – 100 of 115)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# b99798fd 04-Aug-2001 Sebastian Bergmann

Another one bites the dust.


# 797a079a 30-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work, and a bit of cleanup


# 15ae74d3 28-Jul-2001 Rasmus Lerdorf

Fix typo


# dde79b86 28-Jul-2001 Zeev Suraski

Build fix


# 63829bc9 28-Jul-2001 Zeev Suraski

Some more fixes


# d87cc976 28-Jul-2001 Zeev Suraski

Redesigned thread safety mechanism - nua nua


# fe6f8712 27-Jul-2001 Zeev Suraski

- Get rid of ELS_*(), and use TSRMLS_*() instead.
- Move to the new ts_allocate_id() API
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any unco

- Get rid of ELS_*(), and use TSRMLS_*() instead.
- Move to the new ts_allocate_id() API
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...

show more ...


Revision tags: PRE_TSRM_MERGE_PATCH, PRE_GRANULAR_GARBAGE_FIX, php-4.0.6, php-4.0.6RC4, php-4.0.6RC3
# 81e2cf03 06-Jun-2001 Rasmus Lerdorf

Fix folding and clean up some extensions


Revision tags: php-4.0.6RC2
# 89c7b891 17-May-2001 Zeev Suraski

Add missing info


Revision tags: php-4.0.6RC1
# 0f60b4b8 14-May-2001 Daniel Beulshausen

fix typo


# 01132639 13-May-2001 Zeev Suraski

Safer detection of recursive PHP invocations


# d229f82a 07-May-2001 Zeev Suraski

Allow virtual() of PHP files. We may have to improve the detection code a
bit, but it worked well on everything I tried.


Revision tags: php-4.0.5, php-4.0.5RC8, php-4.0.5RC7, php-4.0.5RC6, php-4.0.5RC5, php-4.0.5RC4, php-4.0.5RC3, php-4.0.5RC2, php-4.0.5RC1
# eb6ba01d 26-Feb-2001 Andi Gutmans

- Fix copyright notices with 2001


Revision tags: php-4.0.4pl1, php-4.0.4pl1RC2
# 0d258cc5 05-Jan-2001 Daniel Beulshausen

make threaded apache module build again


Revision tags: php-4.0.4pl1RC1, php-4.0.4REL
# 3b20a425 14-Dec-2000 Daniel Beulshausen

added missing SLS_FETCH()


Revision tags: php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4
# 276cb7cd 13-Dec-2000 Sascha Schumann

Add apache_child_terminate() and INI setting apache.child_terminate
which defaults to 0.

Submitted by: Sam Liddicott <sam.liddicott@ananova.com>


# 107aa9f7 10-Dec-2000 Sascha Schumann

Align ZTS handling of globals with common usage


# d41137fe 10-Dec-2000 Daniel Beulshausen

fix win32 apache module
# this is ugly, has someone a better way?


# 1f31360f 10-Dec-2000 Daniel Beulshausen

fix windows build


# 0ddb725f 07-Dec-2000 Sascha Schumann

Axe rest of DAV leftovers and use STD_PHP_INI_ENTRY in the INI section


Revision tags: php-4.0.4RC3
# c6e0cef2 13-Oct-2000 Daniel Beulshausen

trivial output change
# someone urged me too


Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1, php-4.0.2
# 8a36eb22 28-Aug-2000 Rasmus Lerdorf

Missed a couple of center attributes


Revision tags: PRE_LIBMYSQL_REVERT, php-4.0.2RC1, PRE_FILE_COMPILE_API_CHANGE
# 52ff887d 29-Jul-2000 Zeev Suraski

Made ob_start() and friends reentrant. It's now possible to implement this
long-requested functionality, now that output buffering is re-entrant:

function eval_ret($code)
{

Made ob_start() and friends reentrant. It's now possible to implement this
long-requested functionality, now that output buffering is re-entrant:

function eval_ret($code)
{
ob_start();
eval($code);
$retval = ob_get_contents();
ob_end_clean();
return $retval;
}

show more ...


Revision tags: PRE_METHOD_CALL_SEPERATE_FIX_PATCH, php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC
# 2987d521 15-Jun-2000 Andi Gutmans

- More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversions


Revision tags: PRE_EIGHT_BYTE_ALLOC_PATCH
# 78d77c14 05-Jun-2000 Rasmus Lerdorf

Fix virtual() when used with output buffering
@ Fix virtual() when used with output buffering (Marc Pohl)


12345