Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Correctly import external data (#33292) | Edin Kadribasic | 2006-04-26 | 1 | -0/+5 |
| | |||||
* | MFH: | Ilia Alshanetsky | 2006-04-02 | 1 | -2/+1 |
| | | | | | | Removed extra space in the Content-Type header for logos Simplified stderr error reporting in apache sapi. | ||||
* | MFH: fix #36400 (Custom 5xx error does not return correct HTTP response ↵ | Antony Dovgal | 2006-02-15 | 1 | -1/+20 |
| | | | | error code) | ||||
* | MFH: I don't recall the reason for messing with r->allowed here, so let's | Rasmus Lerdorf | 2006-01-06 | 1 | -3/+0 |
| | | | | | get rid of it (and see who screams). This should fix bug #32561 | ||||
* | bump year and license version | foobar | 2006-01-01 | 6 | -18/+18 |
| | |||||
* | MFH | Andrei Zmievski | 2005-12-16 | 1 | -1/+1 |
| | |||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -1/+1 |
| | |||||
* | MFH: nuke php3 legacy | foobar | 2005-12-06 | 1 | -4/+4 |
| | |||||
* | MFH: initialize SG(request_info).auth_digest | Antony Dovgal | 2005-10-18 | 1 | -0/+1 |
| | |||||
* | MFH: Fixed bug #34905 (Digest authentication does not work with Apache 1). | Ilia Alshanetsky | 2005-10-18 | 1 | -6/+6 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 6 | -6/+6 |
| | |||||
* | Fixed bug #33723 (php_value overrides php_admin_value) | Dmitry Stogov | 2005-08-01 | 1 | -3/+3 |
| | |||||
* | Added a SG(server_context) NULL check to php_apache_getenv. | Brian France | 2005-06-28 | 1 | -0/+4 |
| | | | | | | This can get called when "<key> = ${<key>}:/foo" is used in a .ini file, but <key> has not be set yet. You will end up with a value of ":/foo", but at least it will not crash now. | ||||
* | fix #29683 (headers_list() returns empty array) | Antony Dovgal | 2005-06-20 | 1 | -3/+1 |
| | |||||
* | - Unify the "configure --help" texts | foobar | 2005-05-29 | 1 | -3/+3 |
| | |||||
* | Fix for bug #33057 - Don't send extraneous entity-headers on a 304 as per | Rasmus Lerdorf | 2005-05-19 | 1 | -3/+9 |
| | | | | | RFC 2616 section 10.3.5 | ||||
* | No c++ comments in C code | foobar | 2005-04-19 | 1 | -2/+1 |
| | |||||
* | added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication. | Rui Hirokawa | 2005-04-04 | 1 | -16/+19 |
| | |||||
* | Fix for bug #32263 | Rasmus Lerdorf | 2005-03-14 | 1 | -0/+1 |
| | | | | | | | | | 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. | ||||
* | Do not set apache stuff if not building apache | foobar | 2005-03-04 | 1 | -27/+31 |
| | |||||
* | - There is no --with-apache2, only apxs2 | Derick Rethans | 2005-01-26 | 1 | -1/+1 |
| | |||||
* | Fix proto | Rasmus Lerdorf | 2004-12-04 | 1 | -1/+1 |
| | |||||
* | Add apache_reset_timeout() function for Apache1. This is needed because | Rasmus Lerdorf | 2004-12-04 | 1 | -0/+15 |
| | | | | | | | | | | | | | Apache1 only resets the write timer, which defaults to 300 seconds, on a successful write. That is, if the client has gone away and Apache attempts a write which fails it will set the conn->aborted flag but not reset the timeout. Assuming the PHP script is running in ignore_user_abort mode we ignore the aborted flag, but we'll still get blown out of the water 300 seconds after the failed write unless we periodically reset the timer. With set_time_limit(0), ignore_user_abort(true) and periodic apache_reset_timeout() calls we can theoretically run forever which is why I disabled this call in safe mode. | ||||
* | MFB: typo in config.m4 (potential configuration problem with Stronghold) | Antony Dovgal | 2004-08-18 | 1 | -1/+1 |
| | |||||
* | Add SAPI hook to get the request time if provided by the web server, | Rasmus Lerdorf | 2004-08-10 | 1 | -0/+9 |
| | | | | | | 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. | ||||
* | - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() | Andi Gutmans | 2004-07-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | 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. | ||||
* | Security Fix broken! Destroyed Basic auth. Blame: me | Stefan Esser | 2004-07-14 | 1 | -1/+1 |
| | | | | | 4.3.x not affected | ||||
* | - Better stability during premature shutdown of request startup | Andi Gutmans | 2004-07-10 | 1 | -7/+8 |
| | |||||
* | MFB - see bug #25753 for details | Rasmus Lerdorf | 2004-01-28 | 1 | -0/+3 |
| | |||||
* | - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5 | foobar | 2004-01-17 | 2 | -23/+23 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 2 | -4/+4 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 4 | -8/+8 |
| | |||||
* | More things for the new build system. | Wez Furlong | 2003-12-19 | 1 | -17/+14 |
| | | | | | Pi3Web and aolserver build untested (no headers and libs for those here) | ||||
* | Fix libxml to use static lib if found. | Wez Furlong | 2003-12-04 | 1 | -1/+1 |
| | | | | | | | Disable apache and isapi by default. Add some smarts so that we can really build extensions and SAPI found in php-src/pecl and/or php-src/../pecl. Only include a logo in the resources if we are building an .exe. | ||||
* | Build adjustments. | Wez Furlong | 2003-12-03 | 1 | -4/+5 |
| | |||||
* | some tweaks for Frank | Wez Furlong | 2003-12-03 | 1 | -21/+7 |
| | |||||
* | Fix build if you don't have apache headers and want to disable apache... | Wez Furlong | 2003-12-03 | 1 | -21/+22 |
| | |||||
* | Add new (optional!) win32 build infrastructure. | Wez Furlong | 2003-12-02 | 1 | -0/+39 |
| | | | | | Will follow up to internals@ shortly. | ||||
* | regex_t is used by both Apache & mbregex. This little check prevent compile | Ilia Alshanetsky | 2003-09-17 | 1 | -0/+4 |
| | | | | | failure, while php is compiled as dso module & mbstring is enabled. | ||||
* | Nuke warning | foobar | 2003-09-09 | 1 | -1/+1 |
| | |||||
* | fix typo | foobar | 2003-09-09 | 1 | -1/+1 |
| | |||||
* | Show the runtime version of Apache instead of compile time. | foobar | 2003-09-09 | 1 | -1/+4 |
| | |||||
* | Fixed format bug | Ilia Alshanetsky | 2003-08-28 | 1 | -1/+1 |
| | |||||
* | - HAVE_OPENSSL_EXT is not defined always. | foobar | 2003-06-27 | 1 | -1/+1 |
| | |||||
* | Fixed win32 build (mod_php4 -> mod_php5) | Edin Kadribasic | 2003-06-15 | 1 | -2/+2 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 6 | -18/+18 |
| | |||||
* | MFB - fix a couple of missing closing folding tags | Rasmus Lerdorf | 2003-06-03 | 1 | -0/+3 |
| | |||||
* | - Fix the error message if apxs|2 is fubar. | foobar | 2003-05-28 | 1 | -1/+1 |
| | |||||
* | Fixed a syntax highlighter problem that happens when output buffering is turned | Moriyoshi Koizumi | 2003-05-16 | 1 | -5/+4 |
| | | | | | on | ||||
* | Reverting my last patch because user reports it does not help | Edin Kadribasic | 2003-05-09 | 1 | -5/+5 |
| | | | | | solve the problem. (bug #23504) |