History log of /PHP-5.6/sapi/apache2handler/sapi_apache2.c (Results 76 – 100 of 135)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.4.1RC1, RELEASE_0_9_0
# f2ed0634 05-Oct-2005 Ilia Alshanetsky

MFH: Fixed possible INI setting leak via virtual() in Apache 2 sapi.


Revision tags: RELEASE_1_0RC1, PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5
# 8c4d1f66 02-Sep-2005 foobar

MFH


Revision tags: php-5.0.5RC2, php-5.0.5RC1
# e134382a 18-Aug-2005 Ilia Alshanetsky

MFH: Fixed bug #33987 (php script as ErrorDocument causes crash in Apache 2).


Revision tags: php-5.1.0RC1, BEFORE_UNICODE_MERGE, RELEASE_2_0_0
# 23e671a5 03-Aug-2005 foobar

- Bumber up year


Revision tags: RELEASE_0_9
# 884c97d4 25-Jul-2005 Rasmus Lerdorf

MFB fix for bug #33690


Revision tags: php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2
# 8be61d70 20-Jun-2005 Antony Dovgal

fix #29683 (headers_list() returns empty array)


Revision tags: php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# 7af1dfa8 08-Apr-2005 foobar

- Fixed bug #32587 (Apache2: errors sent to error_log do not include timestamps)


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2
# 3c0411c4 14-Mar-2005 Rasmus Lerdorf

Fix for bug #32263
This adds proto_num to request_info. It is defaulted to HTTP 1.0 (1000)
such that it has a valid value even if the underlying sapi doesn't set it
correctly. It is the

Fix for bug #32263
This adds proto_num to request_info. It is defaulted to HTTP 1.0 (1000)
such that it has a valid value even if the underlying sapi doesn't set it
correctly. It is then used to determine if a 302 or a 303 should be sent
on a Location redirect. Any non GET/HEAD HTTP 1.1 redirect will get a 303
instead of a 302 to be compatible with the HTTP spec.

show more ...


Revision tags: php-5.0.4RC1, php-4.3.11RC1
# bef3202d 10-Mar-2005 Joe Orton

- Fixed bug #31717: Reject PATH_INFO if "AcceptPathInfo off" is used.


Revision tags: RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# 8288c451 17-Jan-2005 Joe Orton

Fixed bug #31519: Set r->status_line to SAPI-provided status-line.


# ce742b08 16-Dec-2004 foobar

- Fix typo (avaliable -> available). (bug #28725)


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2
# 9baa92c5 06-Dec-2004 Stanislav Malyshev

fix startup - if startup did not succeed, do not continue with execution


# f9c2324c 06-Dec-2004 Stanislav Malyshev

do not zero out peak - MM shutdown would do that


Revision tags: php-5.0.3RC1, php-4.3.10RC1
# 1f364c1e 23-Oct-2004 Joe Orton

- always convert apr_time_t to time_t using apr_time_sec() to be future-proof.
- print apr_time_t values using APR_TIME_T and apr_snprintf.
- remove redundant add_property_long calls.


# 516a19f1 23-Oct-2004 Joe Orton

Fix the get_request_time implementation for the 2.0 SAPIs to return
seconds not microseconds and to use TSRM stuff correctly.


Revision tags: PRE_NEW_VM_GEN_PATCH
# 1ef6c7ad 20-Oct-2004 Joe Orton

Fix case where php_handle_aborted_connection was called outside a
try/end_try block (#25570).


Revision tags: php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1
# 364c2fe5 11-Aug-2004 Marcus Boerger

TSRM fix


# cad60c37 10-Aug-2004 Rasmus Lerdorf

Add SAPI hook to get the request time if provided by the web server,
otherwise call time(0) on the first call and store it so subsequent
calls will get the same time. Hook support for Apache

Add SAPI hook to get the request time if provided by the web server,
otherwise call time(0) on the first call and store it so subsequent
calls will get the same time. Hook support for Apache1/2 included.

show more ...


Revision tags: php-5.0.1RC1, RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have to check for it and it slows down
the general case. In addition, it seems that empty_string has been abused
quite a lot, and was used not only for setting zval's but generally in
PHP code instead of "", which wasn't the intention. Last but not least,
nuking empty_string should improve stability as I doubt every place
correctly checked if they are not mistakenly erealloc()'ing it or
calling efree() on it.
NOTE: Some code is probably broken. Each extension maintainer should
check and see that my changes are OK. Also, I haven't had time to touch
PECL yet. Will try and do it tomorrow.

show more ...


# 2af6d0e1 17-Jul-2004 Moriyoshi Koizumi

- request_dtor() should be called if a fatal error occurs during activation
phase.


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8
# 42f7b802 25-Jun-2004 Edin Kadribasic

MFB: Memory leak fix (patch by Joe Orton)
Fixes #28113. Adapted to php5 by Magnus Määttä.


# cfbf5b24 18-Jun-2004 Ilia Alshanetsky

Fixed bug #28818 (Apache 2 sapis do not export st_dev).


Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2
# 39baa271 16-Mar-2004 Ilia Alshanetsky

Fixed bug #27580 (pre-initialization errors in ap2 handler are not being
written to vhost error log).
Stop using depreciated and ignored APLOG_NOERRNO directive.
Make file not found & dir

Fixed bug #27580 (pre-initialization errors in ap2 handler are not being
written to vhost error log).
Stop using depreciated and ignored APLOG_NOERRNO directive.
Make file not found & directory as script invocation error messages more
descriptive.

show more ...


Revision tags: php-5.0.0RC1RC1, RELEASE_0_2_0
# c828007f 08-Mar-2004 Ilia Alshanetsky

Fixed bug #27424 (headers missing on flush() in apache 2 SAPIs).


Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1
# 815fe886 11-Feb-2004 Rui Hirokawa

fixed a compilation error.


123456