summaryrefslogtreecommitdiff
path: root/sapi/apache
Commit message (Collapse)AuthorAgeFilesLines
...
* MFHAntony Dovgal2006-12-281-2/+2
|
* Make MEMORY_LIMIT and ZEND_USE_MALLOC_MM to be always enabled. They don't ↵Dmitry Stogov2006-12-201-9/+3
| | | | make any significant slowdown, but incrise maintainability a lot. Note that the setting of memory_limit wasn't changes (neither in main/main.c nor in php.ini) and it still set to 16M.
* MFH:Ilia Alshanetsky2006-11-031-2/+5
| | | | | | Added filter support for $_SERVER in cgi/apache2 sapis Make sure PHP_SELF is filtered in Apache 1 sapi
* Memory assigned to the request_rec should be allocated from apache poolsBrian France2006-10-121-7/+2
| | | | | and should not be free'ed at the end of the handler phase
* more int->zend_bool conversionsNuno Lopes2006-09-061-1/+2
|
* Added "PHPINIDir" Apache directive to apache and apache_hooks SAPIsDmitry Stogov2006-08-031-0/+13
|
* Changed memory_get_usage() and memory_get_peak_usage(). Optional boolean ↵Dmitry Stogov2006-07-251-1/+1
| | | | argument allows get memory size allocated by emalloc() (by default) or real size of memory allocated from system.
* New memory managerDmitry Stogov2006-07-181-2/+1
|
* Switch to a signed int for now. Will look at moving to a long throughoutRasmus Lerdorf2006-05-131-1/+1
| | | | | the code here.
* Add input_filter hook call in getenv()Rasmus Lerdorf2006-05-101-1/+5
|
* Correctly import external data (#33292)Edin Kadribasic2006-04-261-0/+5
|
* MFH:Ilia Alshanetsky2006-04-021-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 Dovgal2006-02-151-1/+20
| | | | error code)
* MFH: I don't recall the reason for messing with r->allowed here, so let'sRasmus Lerdorf2006-01-061-3/+0
| | | | | get rid of it (and see who screams). This should fix bug #32561
* bump year and license versionfoobar2006-01-016-18/+18
|
* MFHAndrei Zmievski2005-12-161-1/+1
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* MFH: nuke php3 legacyfoobar2005-12-061-4/+4
|
* MFH: initialize SG(request_info).auth_digestAntony Dovgal2005-10-181-0/+1
|
* MFH: Fixed bug #34905 (Digest authentication does not work with Apache 1).Ilia Alshanetsky2005-10-181-6/+6
|
* - Bumber up yearfoobar2005-08-036-6/+6
|
* Fixed bug #33723 (php_value overrides php_admin_value)Dmitry Stogov2005-08-011-3/+3
|
* Added a SG(server_context) NULL check to php_apache_getenv.Brian France2005-06-281-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 Dovgal2005-06-201-3/+1
|
* - Unify the "configure --help" textsfoobar2005-05-291-3/+3
|
* Fix for bug #33057 - Don't send extraneous entity-headers on a 304 as perRasmus Lerdorf2005-05-191-3/+9
| | | | | RFC 2616 section 10.3.5
* No c++ comments in C codefoobar2005-04-191-2/+1
|
* added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication.Rui Hirokawa2005-04-041-16/+19
|
* Fix for bug #32263Rasmus Lerdorf2005-03-141-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 apachefoobar2005-03-041-27/+31
|
* - There is no --with-apache2, only apxs2Derick Rethans2005-01-261-1/+1
|
* Fix protoRasmus Lerdorf2004-12-041-1/+1
|
* Add apache_reset_timeout() function for Apache1. This is needed becauseRasmus Lerdorf2004-12-041-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 Dovgal2004-08-181-1/+1
|
* Add SAPI hook to get the request time if provided by the web server,Rasmus Lerdorf2004-08-101-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 Gutmans2004-07-191-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: meStefan Esser2004-07-141-1/+1
| | | | | 4.3.x not affected
* - Better stability during premature shutdown of request startupAndi Gutmans2004-07-101-7/+8
|
* MFB - see bug #25753 for detailsRasmus Lerdorf2004-01-281-0/+3
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-172-23/+23
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-082-4/+4
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-084-8/+8
|
* More things for the new build system.Wez Furlong2003-12-191-17/+14
| | | | | Pi3Web and aolserver build untested (no headers and libs for those here)
* Fix libxml to use static lib if found.Wez Furlong2003-12-041-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 Furlong2003-12-031-4/+5
|
* some tweaks for FrankWez Furlong2003-12-031-21/+7
|
* Fix build if you don't have apache headers and want to disable apache...Wez Furlong2003-12-031-21/+22
|
* Add new (optional!) win32 build infrastructure.Wez Furlong2003-12-021-0/+39
| | | | | Will follow up to internals@ shortly.
* regex_t is used by both Apache & mbregex. This little check prevent compileIlia Alshanetsky2003-09-171-0/+4
| | | | | failure, while php is compiled as dso module & mbstring is enabled.
* Nuke warningfoobar2003-09-091-1/+1
|