Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: Fixed mess with CGI/CLI -d command line option (now it works with cgi; ↵ | Dmitry Stogov | 2006-09-19 | 1 | -0/+2 |
| | | | | constants are working exactly like in php.ini; with FastCGI -d affects all requests). | ||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication. | Rui Hirokawa | 2005-04-04 | 1 | -0/+1 |
| | |||||
* | 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. | ||||
* | - Fix bug #28568 (known_post_content_types is not thread safe). | Moriyoshi Koizumi | 2005-02-21 | 1 | -3/+4 |
| | | | | | # What is eventually necessiated is entire SAPI redesign, I think. | ||||
* | Fix win32 compilation. Missing uid_t and gid_t definitions. | Frank M. Kromann | 2004-08-21 | 1 | -0/+3 |
| | |||||
* | Add SAPI hook to get the request time if provided by the web server, | Rasmus Lerdorf | 2004-08-10 | 1 | -0/+3 |
| | | | | | | 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. | ||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | - Fixed standard wrapper for input filter. | Derick Rethans | 2003-11-30 | 1 | -1/+1 |
| | |||||
* | - Fix sapi_input_filter patch. Returning 1 from the filter handler should | Derick Rethans | 2003-11-29 | 1 | -2/+2 |
| | | | | | | | make PHP register the variable, returning 0 shouldn't. The new length of the variables being filtered is now returned in the new_val_len argument of the function. | ||||
* | Fix use of EXTERN_C macros | Ard Biesheuvel | 2003-09-02 | 1 | -8/+8 |
| | |||||
* | linkage for C++ | Wez Furlong | 2003-08-18 | 1 | -2/+8 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | make phpinfo() depend on executed sapi | Marcus Boerger | 2003-03-18 | 1 | -0/+1 |
| | |||||
* | give sapi modules the possibility to overwrite default ini settings | Marcus Boerger | 2003-03-18 | 1 | -0/+2 |
| | |||||
* | An input filter might not simply strip stuff, it might also turn things | Rasmus Lerdorf | 2003-02-20 | 1 | -3/+3 |
| | | | | | | | into entities or use some other mechanism which causes the filtered data to be longer than the original data. Ergo, pass in the address of the buffer instead so the filter is free to reallocate it. | ||||
* | Input Filter support. See README.input_filter for details. | Rasmus Lerdorf | 2003-02-19 | 1 | -0/+5 |
| | | | | | @- Input Filter support added. See README.input_filter. (Rasmus) | ||||
* | ws fixes + missing $Id$ tags, headers added | foobar | 2003-02-19 | 1 | -0/+1 |
| | |||||
* | add sapi_get_target_uid/_gid for obtaining information about the | Sascha Schumann | 2003-01-21 | 1 | -0/+6 |
| | | | | | | | non-privileged user the web server is running as. this is useful for creating shared memory segments which need to be accessed by the child processes/threads. | ||||
* | scrap STANDARD_SAPI_MODULE_PROPERTIES; it is causing more harm than good | Sascha Schumann | 2003-01-15 | 1 | -1/+1 |
| | |||||
* | whitespace | Sascha Schumann | 2003-01-15 | 1 | -6/+5 |
| | |||||
* | - Fixed bug #21169: Compile Failure, and lots of warnings on UnixWare | Derick Rethans | 2003-01-02 | 1 | -0/+1 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | add a "force HTTP/1.0 response" facility to the SAPI layer | Sascha Schumann | 2002-12-01 | 1 | -1/+3 |
| | | | | | | | this is necessary, when you want to take over control of a connection and the web server is doing stupid things by default (like enabling chunked transfer encoding for no reason). | ||||
* | - Made the STANDARD_SAPI_MODULE_PROPERTIES be what it says it is. | foobar | 2002-11-26 | 1 | -2/+2 |
| | |||||
* | Add sapi_get_fd() and implement it for the Apache/thttpd SAPIs. | Sascha Schumann | 2002-11-26 | 1 | -0/+6 |
| | |||||
* | Fix ZTS build. | Sebastian Bergmann | 2002-11-18 | 1 | -0/+1 |
| | |||||
* | added support functions for the apache_hooks SAPI | George Schlossnagle | 2002-11-18 | 1 | -0/+2 |
| | |||||
* | Implemented -n switch to skip parsing ini at startup as suggested by Wez. | Marcus Boerger | 2002-11-12 | 1 | -1/+3 |
| | | | | | | #The switch 'n' was planned to be used for beautifying....delete n to make #clear these functions do not have a switch yet. | ||||
* | HTTP_RAW_POST_DATA BC fixes | Hartmut Holzgraefe | 2002-11-12 | 1 | -2/+2 |
| | | | | | | # hopefully all done, commiting anyway to continue work on my home box php://input stream fixes (POST data handerl mangles data, CLI crashbug) | ||||
* | made sapi_register_treat_data() to support multibyte input encoding ↵ | Rui Hirokawa | 2002-08-02 | 1 | -0/+5 |
| | | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data. | ||||
* | fixed: output encoding translation by mb_output_handler() in ext/mbstring ↵ | Rui Hirokawa | 2002-07-27 | 1 | -0/+1 |
| | | | | was not usable when Content-Type is set by header(). | ||||
* | Add sapi_header_op interface which supersedes the sapi_add_header and _ex | Sascha Schumann | 2002-07-03 | 1 | -3/+31 |
| | | | | | | | | | | | | | | | | | | | | | calls. Revert the change to the sapi_add_header_ex interface. Fix various bugs: 1. header("HTTP/1.0 306 foo"); header("Location: absolute-uri"); did not work in combination with several SAPI modules, because http_status_line was never properly reset. And thus, all SAPI modules which looked at http_status_line ignored the changed http_response_code. 2. The CGI SAPI did not send out the HTTP status line at all, if http_status_line had not been set explicitly by calling header("HTTP/1.0 200 foo"); | ||||
* | - Added a new parameter to the header() function which overrides the HTTP | Derick Rethans | 2002-06-21 | 1 | -2/+2 |
| | | | | | | | response code. @- Added a new parameter to the header() function which overrides the HTTP @ response code. (Derick) | ||||
* | Revert to the old php_ini.c, and reimplement the binary-path searching. | Zeev Suraski | 2002-05-11 | 1 | -1/+2 |
| | | | | | Should now also work under UNIX (CLI/CGI) | ||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 1 | -1/+1 |
| | |||||
* | Added argc and argv in request_info needed for the new cli sapi. | Edin Kadribasic | 2002-01-06 | 1 | -0/+4 |
| | | | | | Modified registering $argc and $argv to support cli sapi. | ||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | Cleanup. | foobar | 2001-09-07 | 1 | -1/+0 |
| | |||||
* | fix SAPI_POST_* exports | Daniel Beulshausen | 2001-08-15 | 1 | -4/+4 |
| | |||||
* | improve typedef definition | Zeev Suraski | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | more tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -1/+1 |
| | |||||
* | More TSRMLS_FETCH work. Got it under 400 now. | Zeev Suraski | 2001-07-31 | 1 | -6/+6 |
| | |||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -1/+1 |
| | |||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -33/+23 |
| | |||||
* | - Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -1/+1 |
| | | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... | ||||
* | @Added -C command-line option to avoid chdir to the script's directory (Stig) | Stig Bakken | 2001-04-16 | 1 | -0/+3 |
| | |||||
* | These functions are not necessary - that's what sapi_register_post_entry() | Zeev Suraski | 2001-03-18 | 1 | -4/+0 |
| | | | | | | | | and sapi_unregister_post_entry() are for... Also, please maintain K&R code layout, it's very messy to have different styles intermixed in the same codebase, and especially in the same files! | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| |