Revision tags: PRE_RETURN_REF_PATCH |
|
#
4a60eed4 |
| 05-Dec-1999 |
Sascha Schumann |
Fix some warnings |
#
dfd0f882 |
| 05-Dec-1999 |
Rasmus Lerdorf |
More maintainer-mode cleanups |
#
5b983c94 |
| 04-Dec-1999 |
Sascha Schumann |
Clean up php3.*\.h files. The files itself are renamed, and references in all .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them ma
Clean up php3.*\.h files. The files itself are renamed, and references in all .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
show more ...
|
#
8713ce5d |
| 04-Dec-1999 |
Sascha Schumann |
Remove code references to serverapi |
#
20190c96 |
| 04-Dec-1999 |
Andrei Zmievski |
Session variables now obey track_vars and gpc_globals settings. If track_vars is on then decoded variables appear in $HTTP_STATE_VARS array. If gpc_globals is on, then session vars are decode
Session variables now obey track_vars and gpc_globals settings. If track_vars is on then decoded variables appear in $HTTP_STATE_VARS array. If gpc_globals is on, then session vars are decoded into global variables. If both are on, then globals and $HTTP_STATE_VARS contents are references to each other. The /decoder functions now just need to call php_set_session_var() this behavior. @ -Session vars are now decoded into $HTTP_STATE_VARS[] array and the @ globals, depending on track_vars and gpc_globals settings (Andrei) # Encoding source is currently only globals. We may want to change this # in the future.
show more ...
|
#
da5464b1 |
| 04-Dec-1999 |
Zeev Suraski |
- zend_file_handles must now flag whether their .filename property should be free by Zend or not (uses e*() functions) |
#
39a99dd6 |
| 03-Dec-1999 |
Sascha Schumann |
2<<30 (== 1<<31) overflows 32-bit signed int, reverting to 1<<30 |
#
639c491d |
| 03-Dec-1999 |
Sascha Schumann |
Add X-Powered-By header in all configurations to ease PHP usage metering |
#
162adb77 |
| 03-Dec-1999 |
Rasmus Lerdorf |
@ PHP 4 scripts will now obey the max_execution_time setting and actually @ time out (Rasmus) # Note that Apache clears all signal handler including SIGPROF before # calling the content h
@ PHP 4 scripts will now obey the max_execution_time setting and actually @ time out (Rasmus) # Note that Apache clears all signal handler including SIGPROF before # calling the content handler, so even though we set our itimer before # this in the PHP_INI stuff, Apache kicks sand in our face and we need # to set the timer again just before we start parsing
show more ...
|
#
c92db344 |
| 02-Dec-1999 |
Rasmus Lerdorf |
# just some symbol cleanup while I am browsing through looking for this # timeout problem |
#
94c36e88 |
| 01-Dec-1999 |
Sascha Schumann |
Make fsock module thread-safe |
#
2337d110 |
| 30-Nov-1999 |
Andi Gutmans |
- Added opened_path to php_fopen_wrapper() and the URL fopen wrapper (it's not always properly set, it's a TODO for all of us). This enables us to implement true 'use' support. @- Ad
- Added opened_path to php_fopen_wrapper() and the URL fopen wrapper (it's not always properly set, it's a TODO for all of us). This enables us to implement true 'use' support. @- Added support for the 'use' keyword - behaves like 'require', but will not @ use the same file more than once (Andi & Zeev, Zend library)
show more ...
|
#
fe48f6ed |
| 26-Nov-1999 |
Sascha Schumann |
Use thread-safe versions of asctime and localtime |
#
442f8b3c |
| 25-Nov-1999 |
Zeev Suraski |
*** empty log message *** |
#
d4621153 |
| 24-Nov-1999 |
Sascha Schumann |
Killing some unused variable warnings |
#
53856104 |
| 23-Nov-1999 |
Sam Ruby |
errors during startup trap server |
#
9820dd09 |
| 22-Nov-1999 |
Zeev Suraski |
Fixed a leak when using automatic output buffering @ Fixed a leak when using automatic output buffering (Zeev) |
Revision tags: ZO_B1, ZEND_OPTIMIZER_B1, php-4.0b3 |
|
#
4bb5e353 |
| 17-Nov-1999 |
Sascha Schumann |
Add post request startup handlers. These are called at the end of the request startup function, and can use the initialized structures like the symbol table. |
Revision tags: PRE_USED_RETURN_VALUE_PATCH, php-4.0b3_RC5, php-4.0b3_RC4, php-4.0b3_RC3, php-4.0b3_RC2 |
|
#
d5233c48 |
| 05-Nov-1999 |
Sam Ruby |
configuration failures trap server |
#
26c019ea |
| 19-Oct-1999 |
Andrei Zmievski |
Revert my patches to error functions. |
#
e906d454 |
| 15-Oct-1999 |
Andrei Zmievski |
Small tweak in the error format. |
#
b625bbd1 |
| 15-Oct-1999 |
Andrei Zmievski |
(php3_log_err): Don't output error message to stderr when running as CGI binary. |
#
3ee9dbea |
| 15-Oct-1999 |
Andrei Zmievski |
(php_error): finally get rid of those annoying html tags when running as CGI binary |
#
965c9c21 |
| 08-Oct-1999 |
Sascha Schumann |
Use correct data type for mutex. |
#
9c995e93 |
| 08-Oct-1999 |
Sascha Schumann |
Implement temporary workaround for thread-safety issues. This serializes all request accesses. To disable, define NO_GLOBAL_LOCK |