History log of /PHP-7.4/main/SAPI.c (Results 101 – 125 of 369)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# ea74b9c2 23-Sep-2011 Xinchen Hui

Fixed bug #55758 (Digest Authenticate missed in 5.4)
the block I am removing should be removed along with the PG(saf_mod) condition.
since it is inside the PG(saf_mod) condition block.


Revision tags: php-5.4.0beta1
# 4a25a774 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)


# e43ff135 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)


Revision tags: yaf-2.1.0, php-5.3.8, php-5.3.7, php-5.3.7RC5, php-5.4.0alpha3, php-5.3.7RC4, php-5.3.7RC3, php-5.4.0alpha2
# 50b654ab 06-Jul-2011 Hannes Magnusson

Fixed bug#55084 (Function registered by header_register_callback is
called only once per process). (Hannes)

also fixed an issue when header()s are sent from the callback function


# 5ddd67d9 06-Jul-2011 Hannes Magnusson

Fixed bug#55084 (Function registered by header_register_callback is
called only once per process). (Hannes)

also fixed an issue when header()s are sent from the callback function


Revision tags: php-5.3.7RC2
# 34d93f0c 22-Jun-2011 Ilia Alshanetsky

Zend Signal Handling


Revision tags: php-5.4.0alpha1, php-5.3.7RC1
# 93987513 02-Jun-2011 Ilia Alshanetsky

Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals)
This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation

# Patch by Lucas Nealan, Arnaud

Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals)
This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation

# Patch by Lucas Nealan, Arnaud Le Blanc, Brian Shire & Ilia Alshanetsky

show more ...


Revision tags: php-5.3.6
# 0778bedb 16-Mar-2011 Pierre Joye

- MFH: make setlocale thread only, drastically reduce TS related crashes in error mgt and other parts like pcre, and actually a good thing (tm)


# 406dd6e8 15-Mar-2011 Pierre Joye

- windows only


# 9319359d 15-Mar-2011 Pierre Joye

- make setlocale thread only, drastically reduce TS related crashes in error mgt and other parts like pcre, and actually a good thing (tm)


Revision tags: php-5.3.6RC3, php-5.3.6RC2
# 12bdec05 25-Feb-2011 Pierre Joye

- fix regression (carsten_sttgt@gmx.de)


Revision tags: php-5.3.6RC1
# c5e86e5a 03-Feb-2011 Kalle Sommer Nielsen

Fix ZTS build


# ca378eef 03-Feb-2011 Scott MacVicar

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), heade

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), header_remove() and header() can all be used
inside the callback.

<?php

header('Content-Type: text/plain');
header('X-Test: foo');

function foo() {
foreach (headers_list() as $header) {
if (strpos($header, 'X-Powered') !== false) {
header_remove('X-Powered-By');
}
header_remove('X-Test');
}
}

$result = header_register_callback('foo');
echo "a";

show more ...


Revision tags: php-5.2.17, php-5.3.5
# 927bf09c 01-Jan-2011 Felipe Pena

- Year++


# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++


# dfb0e708 16-Dec-2010 Jani Taskinen

- Typos, WS, CS


Revision tags: php-5.2.16
# 6654a4ad 09-Dec-2010 Gustavo André dos Santos Lopes

- Added enable_post_data_reading ini option to allow inhibiting POST data consumption.


Revision tags: php-5.2.15, php-5.3.4, php-5.2.15RC2, php-5.3.4RC2
# 54769176 22-Nov-2010 Kalle Sommer Nielsen

Fixed gettimeofday() usage for Ilia's REQUEST_TIME improvement on Windows


Revision tags: php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1
# a31f3793 18-Nov-2010 Gustavo André dos Santos Lopes

- Reversed implementation of FR #44164, pending further consideration.
See rev #304903.


# f89effd2 06-Nov-2010 Ilia Alshanetsky

Updated _SERVER['REQUEST_TIME'] to include microsecond precision.


# ee80871a 27-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53180 (post_max_size=0 not disabling the limit when the content
type is application/x-www-form-urlencoded or is not registered with PHP).


# da400e75 27-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53180 (post_max_size=0 not disabling the limit when the content
type is application/x-www-form-urlencoded or is not registered with PHP).


# 0086bc8a 26-Oct-2010 Gustavo André dos Santos Lopes

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of t

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of the
#response, so this exception for zlib.output_compression is an
#inconsistency. However, zlib.output_compression is presented as a
#performance setting, whose value should have no effect on the
#correctness of the scripts. This was not the case. Setting the
#header "content-length" and enabling zlib.output_compression was
#a recipe for infringing section 4.4 of RFC 2616.

show more ...


# 1f191e4d 26-Oct-2010 Gustavo André dos Santos Lopes

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of t

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of the
#response, so this exception for zlib.output_compression is an
#inconsistency. However, zlib.output_compression is presented as a
#performance setting, whose value should have no effect on the
#correctness of the scripts. This was not the case. Setting the
#header "content-length" and enabling zlib.output_compression was
#a recipe for infringing section 4.4 of RFC 2616.

show more ...


# 05383a10 17-Sep-2010 Pierre Joye

- drop TSRMLS_FETCH in sapi_register_* (won't bring much at runtime :) ) and cleanup/group the upgrade guide, no need of twenty titles for the same change


12345678910>>...15