#
ecbc0255 |
| 27-Aug-2000 |
Andi Gutmans |
- Use do_alloca()/free_alloca() for old_cwd. This will ensure speed in - non-ISAPI environments but in ISAPI will use emalloc()/efree() to save - stack space. MS only gives us 10KB those bast
- Use do_alloca()/free_alloca() for old_cwd. This will ensure speed in - non-ISAPI environments but in ISAPI will use emalloc()/efree() to save - stack space. MS only gives us 10KB those bastards.
show more ...
|
#
827672cd |
| 27-Aug-2000 |
Andi Gutmans |
- Reverting Sascha's patch although I don't like doing these kind of things - but as it is Sascha who has reverted a zillion patches I don't feel that - bad about it :) - The patch is mor
- Reverting Sascha's patch although I don't like doing these kind of things - but as it is Sascha who has reverted a zillion patches I don't feel that - bad about it :) - The patch is morally incorrect and it actually also has a crash bug which - I won't point out because it shouldn't be there. - SG(path_translated) should be set by the SAPI module correctly and if it - isn't the SAPI module should be fixed and not add code to PHP. There is - enough special case code in PHP and I would like to clean it up and not - add more. - Last but not least, old_cwd takes 4KB of stack space. We should probably - malloc() it because in ISAPI we only have 10KB of stack space.
show more ...
|
#
390d1cd1 |
| 27-Aug-2000 |
Sascha Schumann |
Initializing new_path once is enough |
#
3f969d0b |
| 27-Aug-2000 |
Sascha Schumann |
If a SAPI module does not pass an absolute path as primary_file to php_execute_script(), we will now change the filename to point to the absolute path. |
#
39770d99 |
| 27-Aug-2000 |
Andi Gutmans |
- Try and fix problem with opening wrong file. |
Revision tags: PRE_LIBMYSQL_REVERT, php-4.0.2RC1 |
|
#
8e0ae5d1 |
| 21-Aug-2000 |
Sascha Schumann |
Cleaning up some mess |
#
c7999595 |
| 20-Aug-2000 |
Andi Gutmans |
- Change PHP_SEPARATOR to PHP_DIR_SEPARATOR |
#
80d87827 |
| 20-Aug-2000 |
Andi Gutmans |
- Sascha's patch should make PHP in VIRTUAL_DIR mode also change to the - right directory so this shouldn't be needed anymore. |
#
1d68a02d |
| 20-Aug-2000 |
Sascha Schumann |
The status quo in PHP is that the current directory is initialized to the directory where the executing script is located. Since this needs to be implemented for all SAPI modules anyway,
The status quo in PHP is that the current directory is initialized to the directory where the executing script is located. Since this needs to be implemented for all SAPI modules anyway, this change moves the functionality to php_execute_script() and gets rid of the per-module code.
show more ...
|
#
ce635bdb |
| 15-Aug-2000 |
Sascha Schumann |
Fix varargs handling. The assignments are not necessary at all and cause problems on various platforms, so we get rid of them. |
#
c9dca640 |
| 15-Aug-2000 |
Zeev Suraski |
Sync with Zend |
#
5090b1e8 |
| 13-Aug-2000 |
Stanislav Malyshev |
Fix zend_fiel_handle handling. Should fix URL include and various opened_path inconsistencies. |
#
a6c6f6a5 |
| 09-Aug-2000 |
Zeev Suraski |
Update to be consistent with the new Zend API |
#
97893e6a |
| 06-Aug-2000 |
Zeev Suraski |
Reverse this patch - it really shouldn't be in the error handler, but in the place that generates the error... |
Revision tags: PRE_FILE_COMPILE_API_CHANGE |
|
#
b04a0266 |
| 04-Aug-2000 |
Hartmut Holzgraefe |
changed default sendmail flags from '-t' to '-t -i' (bugid#5374) |
#
b59e98b8 |
| 01-Aug-2000 |
Hartmut Holzgraefe |
"undefined function" error message will now suggest similar named functions as jikes compiler for java does (typo protection) |
#
52ff887d |
| 29-Jul-2000 |
Zeev Suraski |
Made ob_start() and friends reentrant. It's now possible to implement this long-requested functionality, now that output buffering is re-entrant: function eval_ret($code) {
Made ob_start() and friends reentrant. It's now possible to implement this long-requested functionality, now that output buffering is re-entrant: function eval_ret($code) { ob_start(); eval($code); $retval = ob_get_contents(); ob_end_clean(); return $retval; }
show more ...
|
#
d8a4278a |
| 29-Jul-2000 |
Zeev Suraski |
- Update .dsp's - Make non ZTS Win32 build again |
#
1a7f8519 |
| 28-Jul-2000 |
Hartmut Holzgraefe |
added '-l' option to command line / CGI version for 'syntax check only' plus a little cleanup and rearranging in command line option parsing @ CGI aka. command line version has now an op
added '-l' option to command line / CGI version for 'syntax check only' plus a little cleanup and rearranging in command line option parsing @ CGI aka. command line version has now an option '-l' for syntax check @ without execution (Hartmut)
show more ...
|
#
7bb67a62 |
| 18-Jul-2000 |
Stig Bakken |
@Set default include_path so PEAR files can be reached (Stig) |
#
aa8d04a8 |
| 13-Jul-2000 |
Zeev Suraski |
Fix disable_functions feature |
#
88113794 |
| 12-Jul-2000 |
Thies C. Arntzen |
(php_error) only set php_errormsg if we (still) have an active_symbol_table. |
#
2cfa840e |
| 09-Jul-2000 |
Sascha Schumann |
Restore INI entries after the request shutdown of modules. This fixes the problems users of the session module encountered when using a save handler other than files. |
Revision tags: 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) |
#
10342b4b |
| 02-Jul-2000 |
Stanislav Malyshev |
react only on CORE_ERROR |