History log of /PHP-5.6/main/SAPI.c (Results 51 – 75 of 312)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
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


# 159cd691 17-Aug-2010 Kalle Sommer Nielsen

Fixed compiler warnings in main/


Revision tags: oci8-1.4.3, php-5.2.14, php-5.3.3, php-5.3.3RC3, php-5.2.14RC3
# f33d2c5f 14-Jul-2010 Dmitry Stogov

Optimized defaut Content-Type HTTP header processing


Revision tags: php-5.3.3RC2, php-5.2.14RC2, php-5.3.3RC1, php-5.2.14RC1
# 11d24c15 31-May-2010 Michael Wallner

* implement new output API, fixing some bugs and implementing some feature
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implem

* implement new output API, fixing some bugs and implementing some feature
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implemented new zlib API
* fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?)

Thanks to Jani and Felipe for pioneering.

show more ...


# dd8e59da 26-Apr-2010 Kalle Sommer Nielsen

Removed safe_mode
* Removed ini options, safe_mode*
* Removed --enable-safe-mode --with-exec-dir configure options on Unix
* Updated extensions, SAPI's and core
* php_get_current_

Removed safe_mode
* Removed ini options, safe_mode*
* Removed --enable-safe-mode --with-exec-dir configure options on Unix
* Updated extensions, SAPI's and core
* php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore

show more ...


# 6169d91b 13-Apr-2010 Kalle Sommer Nielsen

* Pass TSRMLS_C around pageinfo.c
* Use zend_parse_parameters_none() in pageinfo.c


# f92fae2f 18-Mar-2010 Andrei Zmievski

I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP w

I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP without extensive discussion on the mailing list.
I am sorry I tried fixing PHP without extensive discussion on the mailing list.

Hope all the relevant parties are satisfied.

show more ...


# 3220f15c 18-Mar-2010 Andrei Zmievski

Fix a few problems with large (2G-4G) file uploads. Added
--enable-large-uploads-fix switch because one change was in SAPI.h structure.


12345678910>>...13