summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* Merge changes from HEADSascha Schumann2000-12-021-4/+0
|
* 4.0.4RC3 is coming.Sascha Schumann2000-12-021-1/+1
|
* This commit was manufactured by cvs2svn to create branch 'php_4_0_4'.SVN Migration2000-12-021-283/+0
|
* Added the capability to specify a different HTTP Redirection response codeJason Greene2000-11-291-1/+5
| | | | | | | | before the Location Header. Ex. header("HTTP/1.1 307 Temporary Redirect"); header("Location: URL");
* Output buffering was being enabled all the time - fixedZeev Suraski2000-11-291-1/+1
|
* @- Fixed a bug which made readdir() unusable in some systems. (Jani)foobar2000-11-281-6/+6
| | | | | # Bug report: #7390
* A field of minesSascha Schumann2000-11-281-1/+1
| | | | | Submitted by: jon@csh.rit.edu
* Add a note about what a missing const specifier does mean in the contextSascha Schumann2000-11-271-0/+5
| | | | | of the request_info structure.
* Move build-defs.h(.in) and php_config.h to mainSascha Schumann2000-11-271-0/+82
|
* Very initial work on chunked output buffering. It's really unoptimized atZeev Suraski2000-11-233-9/+41
| | | | | | this time, and it can crash under some circumstances, but that's the concept...
* Return the exit status from php_execute_script()Sascha Schumann2000-11-222-4/+7
|
* removing compiler warning by including credits.hFrank M. Kromann2000-11-201-0/+1
|
* PHP does not care about inline at all, so get rid of this block.Sascha Schumann2000-11-171-7/+0
|
* - Import Jade Nicoletti's transparent gzip encoding support as an outputZeev Suraski2000-11-134-6/+20
| | | | | | | handler. Works quite nicely! - Fix buglets in output buffering - Add output_handler INI directive
* Prototype corrected.Kristian Köhntopp2000-11-121-2/+2
|
* fix for #7756 and #6743 : fatal error on 'include("")' instead of warningHartmut Holzgraefe2000-11-111-8/+3
| | | | | (+ some cleanup)
* win32 sapi symbol export fixesDaniel Beulshausen2000-11-072-3/+3
|
* @- In CGI mode, $HTTP_SERVER_VARS now includes all of the environment variablesZeev Suraski2000-11-073-10/+10
| | | | | @ as well (Zeev)
* cookie_data may also be modified...Zeev Suraski2000-11-071-1/+1
|
* zend_hash_find() treats this argument as const, but fails to declareSascha Schumann2000-11-061-1/+1
| | | | | the function properly.
* - When mode is specified the flag is a don't careAndi Gutmans2000-11-022-5/+6
|
* - Missed one of the php_checkuid() placesAndi Gutmans2000-11-021-1/+1
|
* - Use CHECKUID_* #define's instead of cryptic numbers in php_checkuid()Andi Gutmans2000-11-021-4/+4
| | | | | | - I did not test for validity of the actual php_checkuid() calls and there - might be mistakes in the previous code.
* - Fixed a bug that caused PHP not to properly flush its output buffer, if moreZeev Suraski2000-11-021-23/+21
| | | | | than one output buffer was used
* Const'ify part of sapi_request_info.Sascha Schumann2000-11-025-15/+15
| | | | | | query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const.
* Namespace protect mergesort (caused conflict on Darwin).Sascha Schumann2000-11-022-2/+2
|
* Fix a few warningsZeev Suraski2000-11-024-72/+104
|
* - Define the different possible modes for readibility and use in the restAndi Gutmans2000-11-012-34/+50
| | | | | - of PHP
* - In function declerations the opening { should be on a new lineAndi Gutmans2000-11-011-1/+2
|
* mode_t fixesZeev Suraski2000-10-311-1/+0
|
* generalization of image handling in phpinfoHartmut Holzgraefe2000-10-311-14/+78
|
* - Fix phpinfo()Zeev Suraski2000-10-311-1/+1
| | | | | - Fix non-thread-safe build
* Fix memory_limit build problemZeev Suraski2000-10-311-1/+1
|
* removed some bogus codeHartmut Holzgraefe2000-10-311-9/+5
|
* - Complete the move to the new INI parser. (Side effect: at last, peopleZeev Suraski2000-10-306-625/+221
| | | | | can finally have spaces and tabs in their extension statements...)
* Remove empty temp file on failed uploadStanislav Malyshev2000-10-301-1/+4
|
* Move browscap code to the new modular INI parserZeev Suraski2000-10-291-135/+5
|
* Use the new INI parser for parse_ini_str()Zeev Suraski2000-10-293-37/+7
| | | | | - parse_ini_str() is now thread-safe, and supported under Windows (Zeev)
* Add php_handle_aborted_connection()Sascha Schumann2000-10-292-0/+12
| | | | | Call this from your SAPI module to signal an aborted connection.
* Fix Windows buildZeev Suraski2000-10-291-1/+1
|
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-294-596/+55
|
* update my email.Thies C. Arntzen2000-10-291-1/+1
|
* - URL-opened files now store the HTTP response header in $http_response_headerZeev Suraski2000-10-281-6/+8
| | | | | - Some layout updates
* Kill compiler warning.Frank M. Kromann2000-10-271-1/+1
|
* Initialize auth_(user|password) to NULL, if data was not suitable.Sascha Schumann2000-10-271-0/+4
|
* Utility function for sapi modules (it is not in SAPI.c, because itSascha Schumann2000-10-272-0/+26
| | | | | relies on php_base64_encode).
* Move some code to php_handle_special_queries().Sascha Schumann2000-10-262-11/+18
|
* Move some initialization code from php_execute_script() toSascha Schumann2000-10-261-4/+5
| | | | | | | php_request_startup() where it should be. AFAICT, it does not cause any problems, but please it test it with your favorite SAPI module.
* Add sapi_add_header_ex, which lets you specify whether you wantSascha Schumann2000-10-262-2/+6
| | | | | to add or replace a header.
* Protect us from Apache 2.0's pcre-posix stuffSascha Schumann2000-10-261-0/+3
|