Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More TSRMLS_FETCH annihilation | Zeev Suraski | 2001-07-31 | 1 | -1/+0 |
| | |||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 7 | -23/+24 |
| | |||||
* | name-protect new expat function | Thies C. Arntzen | 2001-07-30 | 1 | -0/+1 |
| | |||||
* | Zend compatibility patch | Zeev Suraski | 2001-07-30 | 4 | -20/+24 |
| | |||||
* | More TSRMLS_FETCH work, and a bit of cleanup | Zeev Suraski | 2001-07-30 | 1 | -6/+0 |
| | |||||
* | Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵ | Zeev Suraski | 2001-07-30 | 3 | -6/+2 |
| | | | | the way | ||||
* | changed for input encoding conversion in win32. | Rui Hirokawa | 2001-07-29 | 1 | -0/+4 |
| | |||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 18 | -246/+204 |
| | |||||
* | Remove superfluous returns | Sascha Schumann | 2001-07-28 | 1 | -3/+0 |
| | |||||
* | - Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 11 | -86/+92 |
| | | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... | ||||
* | Remove references to global startup functions. | Andrei Zmievski | 2001-07-24 | 1 | -10/+0 |
| | |||||
* | Get rid of the redundant global startup code | Zeev Suraski | 2001-07-24 | 5 | -54/+1 |
| | |||||
* | Unbreak various tests and transparent session id rewriting for now. This | Sascha Schumann | 2001-07-23 | 1 | -3/+0 |
| | | | | | | | | | has been tested extensively. Most SAPI modules (Apache 1.x, 2.0, thttpd, AOLserver, CGI, TUX, Caudium, Roxen, NSAPI, Phttpd, Pi3web, Servlet) call php_request_shutdown() right after php_execute_script (or equivalent functionality), so that output is possible under an overwhelmingly number of web-servers. | ||||
* | fix date('T') | Daniel Beulshausen | 2001-07-22 | 1 | -0/+2 |
| | |||||
* | - Shouldn't be needed anymore | Andi Gutmans | 2001-07-21 | 1 | -2/+0 |
| | |||||
* | - Fix __FILE__ in the main script in CGI/command line mode. | Andi Gutmans | 2001-07-21 | 2 | -10/+18 |
| | |||||
* | Improved bailout mechanism, supports nested bailouts a-la try..catch | Zeev Suraski | 2001-07-21 | 1 | -97/+96 |
| | | | | | Note: You may *not* return directly from a catch block | ||||
* | Fix UNIX build | Zeev Suraski | 2001-07-20 | 1 | -2/+2 |
| | |||||
* | Fix Windows build | Zeev Suraski | 2001-07-20 | 3 | -3/+2 |
| | |||||
* | Avoid getting bailouts on text output during shutdown. Text output is now | Zeev Suraski | 2001-07-20 | 3 | -22/+42 |
| | | | | | | | | 'officially' disabled during shutdown (this doesn't change the Apache module behavior, but may change behavior of other server modules, in which it was possible to emit output during shutdown; I think it's a good step towards consistency, though) | ||||
* | Add always_populate_raw_post_data ini directive and default it to 0 to | Rasmus Lerdorf | 2001-07-17 | 4 | -1/+8 |
| | | | | | | | | | 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) | ||||
* | Another layout fix | Zeev Suraski | 2001-07-16 | 1 | -2/+3 |
| | |||||
* | Fix layout | Zeev Suraski | 2001-07-16 | 1 | -4/+5 |
| | | | | | | | Guys - when submitting patches - please make sure you're not breaking the layout of the code! It's not less important than the patch itself. | ||||
* | Fix the crash Joey found | Zeev Suraski | 2001-07-16 | 1 | -11/+11 |
| | |||||
* | Generalize | Zeev Suraski | 2001-07-16 | 1 | -15/+3 |
| | |||||
* | Fix a couple of build warnings | Rasmus Lerdorf | 2001-07-16 | 1 | -1/+1 |
| | |||||
* | Fix warning | Zeev Suraski | 2001-07-15 | 1 | -1/+1 |
| | |||||
* | Fix a crash with the new check-in-cwd code. It will now work only | Zeev Suraski | 2001-07-15 | 1 | -16/+20 |
| | | | | | with files which are included in runtime, and not files which are opened at startup (e.g., php.ini) | ||||
* | 2nd bug in the same line | Zeev Suraski | 2001-07-15 | 1 | -1/+1 |
| | |||||
* | remove bogus & | Zeev Suraski | 2001-07-15 | 1 | -1/+1 |
| | |||||
* | Make bailouts valid at request_startup | Zeev Suraski | 2001-07-15 | 1 | -0/+4 |
| | |||||
* | o Fixed Bug #12121: chdir and safe_mode | James E. Flemer | 2001-07-13 | 5 | -75/+144 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [ 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 handling | Sascha Schumann | 2001-07-13 | 2 | -2/+2 |
| | |||||
* | Remove unreferenced variable | Zeev Suraski | 2001-07-11 | 1 | -1/+0 |
| | |||||
* | use ZVAL_* macros | Thies C. Arntzen | 2001-07-11 | 1 | -10/+4 |
| | |||||
* | - Nuke fprintf() | Andi Gutmans | 2001-07-10 | 1 | -2/+0 |
| | |||||
* | - Commit patch which checks for an include file in the calling scripts' | Andi Gutmans | 2001-07-10 | 1 | -1/+32 |
| | | | | | | | | current working directory if everything else fails (include_path). - Right now this also effects things like opening php.ini. It'll now always check in the current working directory for php.ini. I think this doesn't screw up todays behavior. | ||||
* | Whitespace | Zeev Suraski | 2001-07-10 | 1 | -9/+9 |
| | |||||
* | Allow errors to be returned as XMLRPC fault packets. | Sascha Schumann | 2001-07-10 | 2 | -0/+14 |
| | | | | | Submitted by: Matt Allen <matt@investigationmarketplace.com> | ||||
* | Fix Windows build (I think) | Rasmus Lerdorf | 2001-07-09 | 1 | -0/+1 |
| | |||||
* | Add getmygid() and safe_mode_gid ini directive to allow safe mode to do | Rasmus Lerdorf | 2001-07-09 | 3 | -2/+11 |
| | | | | | | | 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) | ||||
* | enable get*by* networking functions + remove comments | Daniel Beulshausen | 2001-07-06 | 1 | -81/+7 |
| | |||||
* | Improve url scanner speed (up to 40% for large chunks of data) | Sascha Schumann | 2001-07-04 | 1 | -0/+5 |
| | | | | | | | and handle some corner cases better. The scanner has been changed to the format as proposed in "RE2C - A More Versatile Scanner Generator" by Cowan et al. | ||||
* | Fix a major thread safety bug in the output mechanism | Zeev Suraski | 2001-07-02 | 3 | -9/+13 |
| | | | | | @- Fixed a major memory corruption bug in the thread safe version (Zeev) | ||||
* | Fix bug #11678 | Zeev Suraski | 2001-06-26 | 1 | -1/+10 |
| | |||||
* | - Fix leak in case of a syntax error | Zeev Suraski | 2001-06-21 | 1 | -1/+1 |
| | | | | | - Be more verbose in lint mode | ||||
* | Remove redundant code from lint mode, it should now do only what it needs to do | Zeev Suraski | 2001-06-21 | 1 | -14/+6 |
| | | | | | and not anything else, and should no longer leak. | ||||
* | Fix one problem with Opera browsers. Tested with IE,NS,Opera. | foobar | 2001-06-19 | 1 | -7/+7 |
| | | | | | There can be also a \t before the 'filename=' part. | ||||
* | Finish phpinfo() HTML 4.01 tweaking. | Sebastian Bergmann | 2001-06-19 | 1 | -5/+5 |
| | |||||
* | Fix folding and clean up some extensions | Rasmus Lerdorf | 2001-06-06 | 24 | -116/+312 |
| |