History log of /PHP-7.4/main/php_globals.h (Results 126 – 150 of 181)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# bfa301df 06-Sep-2000 Zeev Suraski

Fix ordering


# eb321449 05-Sep-2000 Zeev Suraski

- Remove track_vars - it is now always on
- Make the various $HTTP_*_VARS[] arrays be defined always,
even if they're empty
- Fix Win32 build and warnings


# ed453cc9 04-Sep-2000 Zeev Suraski

Fix the file upload security problem with no side effects (untested)


Revision tags: php-4.0.2, PRE_LIBMYSQL_REVERT, php-4.0.2RC1, PRE_FILE_COMPILE_API_CHANGE, PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# 23ca7b9f 04-Jul-2000 Stig Bakken

Added "html_errors" directive to optionally disable HTML formatting of error
messages. The default is on. (Stig)


# 16017f6d 02-Jul-2000 Sascha Schumann

Change header protection macros to conform to standard.

Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

All identifiers that begin with an underscore and either an

Change header protection macros to conform to standard.

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.

show more ...


Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC
# c885f468 16-Jun-2000 Zeev Suraski

Improve timeout support - ini_get("max_execution_time", ...) works now


Revision tags: PRE_EIGHT_BYTE_ALLOC_PATCH
# 34c40031 06-Jun-2000 Zeev Suraski

@- Made the short_tags, asp_tags and allow_call_time_pass_reference INI directives work
@ on a per-directory basis as well, e.g. from .htaccess files (Zeev)


# 8fb954ae 29-May-2000 Zeev Suraski

Fix startup sequence. It should do it this time.


Revision tags: php-4.0.0
# e043439f 18-May-2000 Zeev Suraski

Update the license with the new clause 6


Revision tags: php-4.0RC2
# 6727342b 14-Apr-2000 Rasmus Lerdorf

Make error_prepend_string and error_append_string work
@Make error_prepend_string and error_append_string work


Revision tags: PHP-4.0-RC1
# 7a955aa1 26-Feb-2000 Zeev Suraski

@- Fixed a (fairly common) situation where error_reporting values would not be
@ properly restored after a call to error_reporting(), in between requests (Zeev)


# e5c8aeb3 26-Feb-2000 Zeev Suraski

- Protect $HTTP_POST_FILES[] as well


# 0e90b9dc 26-Feb-2000 Zeev Suraski

@- The various $HTTP_*_VARS[] are now protected, and cannot be manipulated by
@ user input (Zeev)
This patch is untested! I'll only have time to test it thoroughly in a couple of hours...


# d23e5d83 25-Feb-2000 Stig Bakken

@- Implemented default_charset and default_mimetype config directives (Stig)
Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.


# ba03c9f2 24-Feb-2000 Stig Bakken

started implementing directives for default mimetype/charset


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1
# 9b621d1c 19-Feb-2000 Zeev Suraski

Get the license right... (this won't make it to RC1 of B4)


Revision tags: BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 003ef1aa 13-Feb-2000 Zeev Suraski

Trap bailout of shutdown functions


# a60e91b3 11-Feb-2000 Andrei Zmievski

(request_shutdown) Prevent infinite loop on shutdown if there is an error
in shutdown function.
(php_array_walk) Print a warning if the walk function doesn't exist.

(request_shutdown) Prevent infinite loop on shutdown if there is an error
in shutdown function.
(php_array_walk) Print a warning if the walk function doesn't exist.

Split shutdown function call into a separate function that's called with
zend_hash_apply() instead of as destructor to keep hash consistent.

This fixes bug #3419.

show more ...


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# 99f079a3 28-Jan-2000 Zeev Suraski

- A few fixes
- Added register_argv_argc directive to allow disabling of argv/argc


# 9ab35ae3 28-Jan-2000 Zeev Suraski

Tried to centralize global variable registration as much as possible:

- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly
to $HTTP_GET_VARS[], contain environment

Tried to centralize global variable registration as much as possible:

- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly
to $HTTP_GET_VARS[], contain environment and server variables. Setting
register_globals to Off will now also prevent registration of the
environment and server variables into the global scope (Zeev)
- Renamed gpc_globals to register_globals (Zeev)
- Introduced variables_order that deprecates gpc_order, and allows control
over the server and environment variables, in addition to GET/POST/Cookies
(Zeev)

show more ...


# ec386cc9 16-Jan-2000 Zeev Suraski

- Remove the pre-request-shutdown hooks, they should no longer be necessary.
The session module may not work due to an unknown (and until now, IMO, misdiagnosed) problem,
if it does, please r

- Remove the pre-request-shutdown hooks, they should no longer be necessary.
The session module may not work due to an unknown (and until now, IMO, misdiagnosed) problem,
if it does, please report it!

show more ...


Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH
# 2dea694a 16-Jan-2000 Zeev Suraski

Remove the post-startup callback support. Modules are now started only after
the entire engine is started. People - please make sure that the session module
works properly for you.


# c7667cec 15-Jan-2000 Sascha Schumann

Initialize/destroy hook lists implicitly.


# 3ff75e5b 15-Jan-2000 Thies C. Arntzen

- don't set php_errormsg on errors that will cause a zend_bailout().
using zend_hash_update() can make things worse in this situation.
- new function php_register_pre_request_shutdown(). th

- don't set php_errormsg on errors that will cause a zend_bailout().
using zend_hash_update() can make things worse in this situation.
- new function php_register_pre_request_shutdown(). this way modules
can register callbacks that will be called as soon as execution of
the script is done but *before* any cleanup (global symbol_table etc)
has taken place.

show more ...


# 24156db2 13-Jan-2000 Zeev Suraski

@- Added implicit_flush INI directive (Zeev)


12345678