summaryrefslogtreecommitdiff
path: root/main/php_globals.h
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Added max_input_vars directive to prevent attacks based on hash collisionsDmitry Stogov2011-12-141-0/+1
|
* Implemented FR #54514 (Get php binary path during script execution).Xinchen Hui2011-12-071-0/+1
|
* Fix build on WindowsKalle Sommer Nielsen2011-09-131-0/+4
|
* - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-4/+0
| | | | the details) for BC reasons but do not allow to set enable MQ
* - Year++Felipe Pena2011-01-011-1/+1
|
* - Added enable_post_data_reading ini option to allow inhibiting POST data ↵Gustavo André dos Santos Lopes2010-12-091-0/+1
| | | | consumption.
* Removed safe_modeKalle Sommer Nielsen2010-04-261-6/+0
| | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* - Removed allow_call_time_pass_reference (Pierrick)Felipe Pena2010-04-261-1/+0
|
* Removed register_globalsKalle Sommer Nielsen2010-04-211-1/+0
|
* Removed register_long_arrays ini option (and $HTTP_SESSION_VARS from ↵Kalle Sommer Nielsen2010-04-151-1/+0
| | | | ext/session)
* Removed y2k_compliance ini option, making it "always" enabled internallyKalle Sommer Nielsen2010-04-121-2/+0
| | | | - The only reference to y2k_compliance was in php_std_date(). Browsers thats not compatable have a marketshare of 0.01% if they even are in use today
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed bug #49627 (error_log to specified file does not log time according to ↵Dmitry Stogov2009-10-051-0/+2
| | | | date.timezone)
* [DOC]Ilia Alshanetsky2009-01-091-0/+3
| | | | | | | | | | | | | | | | | | Added mail logging functionality that allows logging of mail sent via mail() function THe logging functionality is disabled by default but can be enabled on a per-directory or globaly via 2 INI settings. The mail.log directive allows you to specify the file where each call to mail() will be logged. The log file will contain the path and line # of the calling script in addition to all of the headers indicated by the user. The mail.add_x_header directive will introduce a X-PHP-Originating-Script header that will contain the file name (no path) of the calling script and the uid of the script. This combination should be sufficient for the admin to locate the sending script.
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* exit_on_timeout patchRasmus Lerdorf2008-03-181-0/+1
| | | | | | | | | | | | | | | | | | | | | After the sigsetjmp change, this is patch #2 in an effort to get some sanity restored to signal handling in PHP. This patch does two things. First, it makes it possible to reset the timeout without resetting the signal handlers. This is important for cases where an extension may have deferred signals in its MINIT in order to implement critical sections. It also lays the groundwork for cleaning up our signal handling and perhaps eventually implementing our own signal deferring mechanism so we can have true critical sections. The second thing this does is to make it possible to terminate the current child process (only for Apache1 at the moment) on a timeout. There are a number of extensions that are unhappy about being longjmp'ed out of and when this happens on a timeout they are left in an inconsistent state. By turning on exit_on_timeout you can now force the process to terminate on a timeout which will clean up any hanging locks and/or memory left hanging after the longjmp.
* [DOC] add request_order INI variable to control $_REQUEST contentStanislav Malyshev2008-03-121-0/+2
| | | | | | # if not set (default), variables_order still is used # request_order accepts G,P and C
* MFH: User error handlers no longer catch supressed errorsEtienne Kneuss2008-03-081-2/+0
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH:Jani Taskinen2007-09-281-0/+3
| | | | | | | | | | | | | | | | | | | | - Added ".htaccess" style user-defined php.ini files support for CGI/FastCGI. - Added support for special [PATH=/opt/httpd/www.example.com/] sections in php.ini. All directives set in these sections will not be able to be overridden in user-defined ini-files or during runtime in the specified path. - Improved php.ini handling: . Added better error reporting for syntax errors in php.ini files . Allowed "ini-variables" to be used almost everywhere ini php.ini files . Allowed using alphanumeric/variable indexes in "array" ini options . Fixed get_cfg_var() to be able to return "array" ini options - Fixed bug #27372 (parse error loading browscap.ini at apache startup) - Fixed bug #42069 (parse_ini_file() allows using some non-alpha numeric characters)
* MFH:- Changed "display_errors" php.ini option to accept "stderr" as value whichJani Taskinen2007-07-241-0/+4
| | | | | | MFH: makes the error messages to be outputted to STDERR instead of STDOUT with MFH: CGI and CLI SAPIs (FR #22839).
* Added ability to create local or remote (URL) user streamsDmitry Stogov2007-07-091-0/+1
| | | | | | | | | | | | | | Local user streams must not be able to open(), URLs if allow_url_include is off Implemented new function stream_is_local() [ - stream_wrapper_register() extended with additional optional argument "flags" of type long. This time only one flag is implemented - STREAM_IS_URL, that means that userstream wrapper is remote (URL). By default stream is local. - stream_is_local() is a new function that accepts stream and tell if this stream is local or remote (URL) ]
* limit nesting level of input variablesStanislav Malyshev2007-03-021-0/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* COM initialization/deinitialization are done only if necessaryDmitry Stogov2006-11-171-0/+3
|
* MFH: added error_get_last() functionMichael Wallner2006-07-191-0/+1
|
* MFH: Backported allow_url_include from HEAD. This directive allowsRasmus Lerdorf2006-06-161-0/+1
| | | | | | separate control of URL handling in includes/requires allowing sites to enable allow_url_fopen without enabling remote includes.
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* 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.