summaryrefslogtreecommitdiff
path: root/main/php_globals.h
Commit message (Collapse)AuthorAgeFilesLines
* Improve the way auto-globals JIT works, and add the ability to turn it offZeev Suraski2004-03-161-0/+1
|
* - Remove gpc_order since it doesn't serve any purpose.foobar2004-01-261-1/+0
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Fixed bug #26707 (Incorrect error for disabled functions/classes).Ilia Alshanetsky2003-12-241-0/+3
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Make serialize precision a configurable option.Ilia Alshanetsky2003-05-081-0/+1
|
* Infrastructure to catch warnings and throw tehm as errors autmaticallyMarcus Boerger2003-05-071-0/+6
|
* 64 bit corrections to parameters to OnUpdateInt Bug #20994 (Dave)David Hill2003-03-101-1/+1
|
* Add JIT initialization for _SERVER and _ENVZeev Suraski2003-03-021-5/+3
| | | | | | (it's less important for the others, even though it should be fairly easy now too)
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-0/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Bug #20433Marcus Boerger2002-11-301-1/+1
|
* Make it possible to test language features like newly introduced 'abstract'Marcus Boerger2002-11-211-0/+1
| | | | | independantly from debug mode.
* some changes to how request input data (Content-Lenght >0) is handledHartmut Holzgraefe2002-10-211-1/+0
| | | | | | | | | | | | | | - webdav-specific stuff removed (should be handled using httpd.conf LIMIT or equivalents) - always_populate_raw_post_data now working on any method, not just POST (and webdav methods with allow_webdav_methods), when Content-Length is greater zero - raw input data is also available using php://input stream, this way one doesn't have to care about memory_limit - input data is now always consumed (although maybe ignored, this fixes we had withproblems with keep-alive connections @ raw POST data is now available as php://input stream (hartmut)
* Fixed bug #16880. Added an ini option max_input_time that allows the userIlia Alshanetsky2002-10-211-0/+1
| | | | | to specify how much time a script may spend parsing input data (POST, GET, etc..).
* Per discussion on #php.bugs (+1 from at least Derick and Jani), revert ↵Sebastian Bergmann2002-09-011-1/+0
| | | | double_buffering.
* @ - Added php.ini option "allow_webdav_methods" to allow handling ofChristian Stocker2002-08-221-1/+2
| | | | | | @ WebDAV http requests within PHP scripts. (chregu) # More methods (for DeltaV) will follow.
* Changed handling of output buffer sizes.Marcus Boerger2002-08-201-0/+1
| | | | | | @Added php.ini option "double_buffering" that forces an additional first @output buffer and improved handling of buffer sizes. (Marcus)
* rename php_error_func<n> to php_error_docref and support Wez ideaMarcus Boerger2002-08-081-0/+3
| | | | | that solves ToDo requirement to point to PHP Manual in error messages.
* - Implement Andrei's request for disabling memory leak reporting in debugDerick Rethans2002-06-261-0/+1
| | | | | | builds. #- Andrei: I can show you the logs :)
* new ini setting log_errors_max_lenMarcus Boerger2002-04-101-0/+1
| | | | | | @-New ini setting log_errors_max_len controls maximum length for error @ messages. Set it to 0 for infinite. Default is 1024 (old behaviour) (Marcus)
* new feature ignoring repeated error messages (defaults to old behaviour)Marcus Boerger2002-04-061-0/+2
| | | | | @You can now disable logging of repeated error messages with two new ini settings ignore_repeated_errors, ignore_repeated_source. @(Marcus)
* Shouldn't have made it into my last commit.Wez Furlong2002-03-181-7/+0
|
* TSRMLS related work on streams, as discussed with Zeev.Wez Furlong2002-03-181-0/+8
| | | | | | # Should be the last "broad" commit for a while # Don't forget to make clean ; make
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Adding a callback mechanism to the unserializer. (patch by BerndDerick Rethans2001-11-261-0/+2
| | | | | | Roemer <berndr@bonn.edu>) #- An explainatory e-mail will be send to php-dev
* Make it possible to enable chunked output buffering without providingZeev Suraski2001-08-111-3/+4
| | | | | an output handling function
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-11/+1
|
* Add always_populate_raw_post_data ini directive and default it to 0 toRasmus Lerdorf2001-07-171-0/+2
| | | | | | | | | maintain current behaviour. If this is turned on then $HTTP_RAW_POST_DATA is always populated with a copy of the raw post data. @ - Add config option (always_populate_raw_post_data) which when enabled @ will always populate $HTTP_RAW_POST_DATA regardless of the post mime @ type (Rasmus)
* o Fixed Bug #12121: chdir and safe_modeJames E. Flemer2001-07-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [ main/safe_mode.h ] added new checkuid mode: CHECKUID_ALLOW_ONLY_FILE: skips directory check if file check fails - [ ext/standard/dir.c ] changed php_checkuid() to use CHECKUID_ALLOW_ONLY_FILE instead of CHECKUID_ALLOW_ONLY_DIR - [ main/safe_mode.c ] added code for new checkuid mode o Fixed Bug #12119: safe mode owner check can be bypassed with symlink - [ main/safe_mode.c ] use VCWD_REALPATH to resolve destination of symlink before trimming filename o New Feature: safe_mode_include_dir (php.ini directive) - Allows bypassing UID/GID checks when including files from the directory in safe_mode_include_dir and its subdirectories. (safe_mode must be on, directory must also be in include_path or full path must be used when including) o Fixed Feature: safe_mode_gid (php.ini directive) - Correctly check (and report) UID/GID bits on directories o Changed include() fall back to scripts cwd implementation - CWD added to the (local) search path in php_fopen_with_path() instead of seperate case. [ main/fopen_wrappers.c ]
* Fix xmlrpc_error:number handlingSascha Schumann2001-07-131-1/+1
|
* Allow errors to be returned as XMLRPC fault packets.Sascha Schumann2001-07-101-0/+4
| | | | | Submitted by: Matt Allen <matt@investigationmarketplace.com>
* Add getmygid() and safe_mode_gid ini directive to allow safe mode to doRasmus Lerdorf2001-07-091-0/+1
| | | | | | | a gid check instead of a uid check. @ - Add getmygid() and safe_mode_gid ini directive to allow safe mode to do @ a gid check instead of a uid check. (James E. Flemer, Rasmus)
* Added new configuration directives:foobar2001-04-041-1/+7
| | | | | arg_separator.input and arg_separator.output
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* - Remove the ini_extension_list globalZeev Suraski2001-01-151-2/+0
| | | | | - Switch to delayed loading of Zend extensions
* Defer loading of extensions until all configuration entries have beenSascha Schumann2001-01-151-0/+2
| | | | | added to the configuration hash.
* - Import Jade Nicoletti's transparent gzip encoding support as an outputZeev Suraski2000-11-131-0/+3
| | | | | | | handler. Works quite nicely! - Fix buglets in output buffering - Add output_handler INI directive
* fopen wrappers cleanupHartmut Holzgraefe2000-10-131-0/+2
| | | | | | | | | - comfiguration is now done by an ini parameter instead of a compile time option - the implementations of the three standard wrappers now live in seperate files in ext/standard - the compiler is happy again, no more warnings
* More security-related (control) patches:Zeev Suraski2000-09-091-1/+6
| | | | | | | - Avoid displaying errors during startup, unless display_startup_errors is enabled. - Implemented post_size_max limit. Defaults to 8MB. - Implemented file_uploads on/off directive (defaults to on).
* Fix orderingZeev Suraski2000-09-061-6/+6
|
* - Remove track_vars - it is now always onZeev Suraski2000-09-051-10/+8
| | | | | | | - Make the various $HTTP_*_VARS[] arrays be defined always, even if they're empty - Fix Win32 build and warnings
* Fix the file upload security problem with no side effects (untested)Zeev Suraski2000-09-041-1/+3
|
* Added "html_errors" directive to optionally disable HTML formatting of errorStig Bakken2000-07-041-0/+2
| | | | | messages. The default is on. (Stig)
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* Improve timeout support - ini_get("max_execution_time", ...) works nowZeev Suraski2000-06-161-2/+0
|
* @- Made the short_tags, asp_tags and allow_call_time_pass_reference INI ↵Zeev Suraski2000-06-061-3/+0
| | | | | | | directives work @ on a per-directory basis as well, e.g. from .htaccess files (Zeev)
* Fix startup sequence. It should do it this time.Zeev Suraski2000-05-291-9/+11
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|