summaryrefslogtreecommitdiff
path: root/main/streams/plain_wrapper.c
Commit message (Collapse)AuthorAgeFilesLines
...
* do not scan include_path with faulty plain_wrapper-based include_path fopenGreg Beaver2008-04-131-4/+0
| | | | | # _fopen_with_path_rel probably needs to call out to regular php_stream_open, for exts that use it (it is exported)
* Added ability to use stream wrappers in include_pathDmitry Stogov2008-03-271-3/+7
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #43182 (file_put_contents() LOCK_EX does not work properly on fileIlia Alshanetsky2007-11-121-0/+3
| | | | | truncation).
* - MFH Add glob stream wrapperMarcus Boerger2007-11-061-1/+5
| | | | | | | [DOC] The glob stream wrapper allows stuff like this: php -r '$it = new DirectoryIterator("glob://ext/spl/*.c"); foreach($it as $f) var_dump($f);'
* MFH: nuke unused variablesJani Taskinen2007-11-011-2/+0
|
* MFH: - Fixed bug #43137 (rmdir() and rename() do not clear statcache)Jani Taskinen2007-10-311-9/+11
|
* Fixed EOF handling in case of reading from file opened in write only mode.Dmitry Stogov2007-07-251-1/+1
|
* MFH: - Fixed bug #41815 (Concurrent read/write fails when EOF is reached)Jani Taskinen2007-07-121-3/+0
|
* Fixed crash on win32 in case of negative sizeDmitry Stogov2007-04-181-2/+7
|
* Fixed crashDmitry Stogov2007-04-181-2/+10
|
* WIN64 supportDmitry Stogov2007-04-161-5/+5
|
* Fixed 64-bit supportDmitry Stogov2007-04-091-1/+1
|
* MFH (r-1.82): Add retry for interrupted reads and graceful handling for ↵Sara Golemon2007-02-231-2/+9
| | | | failed retries
* MFH: implement PHP_STREAM_FLAG_NO_CLOSE and avoid hacksAntony Dovgal2007-02-211-9/+0
|
* Fixed a memory leak on highlight_file() with a non-existant fileIlia Alshanetsky2007-02-131-3/+7
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: fix #39673 (file_get_contents causes bus error on certain offsets)Antony Dovgal2006-11-291-0/+7
|
* Fix ftruncate() with negative size on FreeBSDHannes Magnusson2006-11-161-1/+1
|
* Removed unnecessary ftell() calls (one call for each included PHP file)Dmitry Stogov2006-11-101-49/+70
|
* Disabled reading from stream (calls to read()) after EOFDmitry Stogov2006-11-101-0/+3
|
* Removed unnecessary checks for ISREG file and corresponding stat() calls on ↵Dmitry Stogov2006-11-101-5/+4
| | | | Windows
* Fixed mkdir("/tmp/foo//bar/log", 0777, true)Dmitry Stogov2006-10-191-3/+27
|
* Fixed wrong pipe detection codeDmitry Stogov2006-09-281-2/+1
|
* Fixed bug #37779 (empty include_path leads to search for files inside /).Ilia Alshanetsky2006-09-121-4/+6
|
* MFH: fix #38199 (fclose() unable to close STDOUT and STDERR)Antony Dovgal2006-08-281-1/+1
|
* Fixed bug #38488 (Access to "php://stdin" and family crashes PHP on win32)Dmitry Stogov2006-08-221-2/+1
|
* MFH: no need to check if non-existing include_path complies with ↵Antony Dovgal2006-06-051-5/+0
| | | | open_basedir setting
* Fixed bug #35886 (nlopes)Edin Kadribasic2006-06-051-1/+1
|
* fix #37395 (recursive mkdir() fails to create nonexistent directories in ↵Antony Dovgal2006-05-161-1/+1
| | | | root dir)
* Only report mkdir() errors if error reporting option is set.Ilia Alshanetsky2006-01-171-1/+3
|
* MFH: fix #35999 (recursive mkdir() does not work with relative path like ↵Antony Dovgal2006-01-161-6/+11
| | | | "foo/bar")
* bump year and license versionfoobar2006-01-011-3/+3
|
* fix #35781 (stream_filter_append() can cause segfault)Antony Dovgal2005-12-231-1/+1
|
* MFH: fix #35079 (stream_set_blocking(true) toggles, not enables blocking)Antony Dovgal2005-11-171-1/+1
| | | | | patch by askalski at gmail dot com
* - MFH: Fixed a bug where stream_get_meta_data() did not return the "uri"Derick Rethans2005-08-261-0/+1
| | | | | element for files opened with tmpname().
* - Bumber up yearfoobar2005-08-031-1/+1
|
* compile before commit (gah!)Wez Furlong2005-07-181-1/+1
|
* Apparently our pipe detection code just above this isn't foolproof.Wez Furlong2005-07-181-0/+6
| | | | | Catch it here.
* - Fix problem with debug mode on selective machinesMarcus Boerger2005-07-171-2/+2
|
* Likely fix for bug #33140Ilia Alshanetsky2005-06-241-1/+7
|
* Fixed bug #31054 (safe_mode & open_basedir checks only check firstIlia Alshanetsky2005-06-201-8/+8
| | | | | include_path value).
* make it compile on Win32 (thanks to Sebastian for noticing)Antony Dovgal2005-05-241-1/+1
|
* Fixed bug #32810 (temporary files not using plain file wrapper).Ilia Alshanetsky2005-05-231-0/+1
|
* Bug #32614 - prevent from crahsing with segfault on solaris if fdopen() ↵Uwe Schindler2005-04-071-0/+3
| | | | fails - this fixes NOT the stdio-problem on solaris!
* Fixed bug #31363 (broken non-blocking flock()).Ilia Alshanetsky2005-04-061-1/+1
| | | | | # Patch by ian at snork dot net
* fix Win32 & Netware buildAntony Dovgal2004-10-281-0/+2
|
* fix bug #30388 (rename across filesystems loses ownership and permission info)Antony Dovgal2004-10-271-2/+25
|
* Implement an fstat cache for plain files.Wez Furlong2004-07-311-96/+120
|
* *sigh*, obviously, we need this to be able to use sapi_module.nameWez Furlong2004-05-251-0/+1
|