summaryrefslogtreecommitdiff
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-1/+0
|
* More TSRMLS_FETCH workZeev Suraski2001-07-317-23/+24
|
* name-protect new expat functionThies C. Arntzen2001-07-301-0/+1
|
* Zend compatibility patchZeev Suraski2001-07-304-20/+24
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-6/+0
|
* Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵Zeev Suraski2001-07-303-6/+2
| | | | the way
* changed for input encoding conversion in win32.Rui Hirokawa2001-07-291-0/+4
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-2818-246/+204
|
* Remove superfluous returnsSascha Schumann2001-07-281-3/+0
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-2711-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 Zmievski2001-07-241-10/+0
|
* Get rid of the redundant global startup codeZeev Suraski2001-07-245-54/+1
|
* Unbreak various tests and transparent session id rewriting for now. ThisSascha Schumann2001-07-231-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 Beulshausen2001-07-221-0/+2
|
* - Shouldn't be needed anymoreAndi Gutmans2001-07-211-2/+0
|
* - Fix __FILE__ in the main script in CGI/command line mode.Andi Gutmans2001-07-212-10/+18
|
* Improved bailout mechanism, supports nested bailouts a-la try..catchZeev Suraski2001-07-211-97/+96
| | | | | Note: You may *not* return directly from a catch block
* Fix UNIX buildZeev Suraski2001-07-201-2/+2
|
* Fix Windows buildZeev Suraski2001-07-203-3/+2
|
* Avoid getting bailouts on text output during shutdown. Text output is nowZeev Suraski2001-07-203-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 toRasmus Lerdorf2001-07-174-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 fixZeev Suraski2001-07-161-2/+3
|
* Fix layoutZeev Suraski2001-07-161-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 foundZeev Suraski2001-07-161-11/+11
|
* GeneralizeZeev Suraski2001-07-161-15/+3
|
* Fix a couple of build warningsRasmus Lerdorf2001-07-161-1/+1
|
* Fix warningZeev Suraski2001-07-151-1/+1
|
* Fix a crash with the new check-in-cwd code. It will now work onlyZeev Suraski2001-07-151-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 lineZeev Suraski2001-07-151-1/+1
|
* remove bogus &Zeev Suraski2001-07-151-1/+1
|
* Make bailouts valid at request_startupZeev Suraski2001-07-151-0/+4
|
* o Fixed Bug #12121: chdir and safe_modeJames E. Flemer2001-07-135-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 handlingSascha Schumann2001-07-132-2/+2
|
* Remove unreferenced variableZeev Suraski2001-07-111-1/+0
|
* use ZVAL_* macrosThies C. Arntzen2001-07-111-10/+4
|
* - Nuke fprintf()Andi Gutmans2001-07-101-2/+0
|
* - Commit patch which checks for an include file in the calling scripts'Andi Gutmans2001-07-101-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.
* WhitespaceZeev Suraski2001-07-101-9/+9
|
* Allow errors to be returned as XMLRPC fault packets.Sascha Schumann2001-07-102-0/+14
| | | | | Submitted by: Matt Allen <matt@investigationmarketplace.com>
* Fix Windows build (I think)Rasmus Lerdorf2001-07-091-0/+1
|
* Add getmygid() and safe_mode_gid ini directive to allow safe mode to doRasmus Lerdorf2001-07-093-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 commentsDaniel Beulshausen2001-07-061-81/+7
|
* Improve url scanner speed (up to 40% for large chunks of data)Sascha Schumann2001-07-041-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 mechanismZeev Suraski2001-07-023-9/+13
| | | | | @- Fixed a major memory corruption bug in the thread safe version (Zeev)
* Fix bug #11678Zeev Suraski2001-06-261-1/+10
|
* - Fix leak in case of a syntax errorZeev Suraski2001-06-211-1/+1
| | | | | - Be more verbose in lint mode
* Remove redundant code from lint mode, it should now do only what it needs to doZeev Suraski2001-06-211-14/+6
| | | | | and not anything else, and should no longer leak.
* Fix one problem with Opera browsers. Tested with IE,NS,Opera.foobar2001-06-191-7/+7
| | | | | There can be also a \t before the 'filename=' part.
* Finish phpinfo() HTML 4.01 tweaking.Sebastian Bergmann2001-06-191-5/+5
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-0624-116/+312
|