Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: Fixed bug #26113 (remove leftover local file when ftp_get/ftp_nb_get | Ilia Alshanetsky | 2003-11-04 | 1 | -0/+2 |
| | | | | | fails). | ||||
* | Bug #25314 ASCII mode transfers behaving like binary when initiated from ↵ | Sara Golemon | 2003-09-08 | 1 | -16/+16 |
| | | | | windows. | ||||
* | MFH: Compiler warning fixes. | Ilia Alshanetsky | 2003-08-28 | 1 | -2/+2 |
| | |||||
* | Another broken prototype | Zeev Suraski | 2003-08-07 | 1 | -1/+1 |
| | |||||
* | Fix prototype | Zeev Suraski | 2003-08-07 | 1 | -1/+1 |
| | |||||
* | MFH | foobar | 2003-06-27 | 1 | -3/+3 |
| | |||||
* | Bug #14369. ftp extension allows circumvention of safe_mode restrictions | Sara Golemon | 2003-05-17 | 1 | -0/+40 |
| | |||||
* | Fixed bug #23004 (When ftp_close() is called, sent QUIT to the ftp server) | Ilia Alshanetsky | 2003-04-03 | 1 | -0/+2 |
| | |||||
* | fixing missed int to long with zend_parse_parameters | David Hill | 2003-03-10 | 1 | -1/+1 |
| | |||||
* | 64-bit correction to variables passed to zend_parse_parameters | David Hill | 2003-03-07 | 1 | -10/+20 |
| | | | | | @64-bit correction to variables passed to zend_parse_parameters (Dave) | ||||
* | MFH | Ilia Alshanetsky | 2003-01-07 | 1 | -7/+8 |
| | |||||
* | Changed perror() to php_error_docref(), fixed bug #21309. | Ilia Alshanetsky | 2003-01-07 | 1 | -4/+3 |
| | | | | | | | | | Made extension use ZE memory allocation wrappers, fixed a memory leak in ftp_mkdir. Removed duplicate ftp_syst() call inside ftp_systype(). # A larger patch with CS fixes will be applied to HEAD shortly. | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | MFH | Ilia Alshanetsky | 2002-12-06 | 1 | -0/+1 |
| | |||||
* | Added ftp_ssl_connect() for FTP over SSL. | Stefan Esser | 2002-10-03 | 1 | -0/+42 |
| | |||||
* | renamed ftp_async_* into ftp_nb_* | Stefan Esser | 2002-10-03 | 1 | -26/+26 |
| | |||||
* | Make these all work with persistent streams too. | Wez Furlong | 2002-09-25 | 1 | -3/+3 |
| | |||||
* | NetWare related additions/modifications into FTP files | Anantha Kesari H Y | 2002-09-05 | 1 | -0/+10 |
| | |||||
* | Fix ZTS build. | Sebastian Bergmann | 2002-08-25 | 1 | -1/+1 |
| | |||||
* | Remove php_stream_error as discussed with Rasmus. | Wez Furlong | 2002-08-25 | 1 | -48/+41 |
| | | | | | Unify error messages for ext/ftp. (which was using php_stream_error). | ||||
* | Fix typo | Rasmus Lerdorf | 2002-08-13 | 1 | -1/+1 |
| | |||||
* | Fix warnings. | Sebastian Bergmann | 2002-08-08 | 1 | -1/+1 |
| | |||||
* | ftp_close returns now TRUE on success and FALSE on failure. | Stefan Esser | 2002-07-30 | 1 | -1/+1 |
| | |||||
* | [EXPERIMENTAL] Added functions for asynchronous FTP transfers | Stefan Esser | 2002-07-26 | 1 | -1/+269 |
| | |||||
* | fixed cut & paste typo | Stefan Esser | 2002-07-26 | 1 | -1/+1 |
| | |||||
* | @- FTP extension does support (auto)resuming now. | Stefan Esser | 2002-07-26 | 1 | -44/+115 |
| | | | | | Added (Auto)Resuming functionality to ftp_(f)get/(f)put via optional 5th parameter. | ||||
* | ws fix | foobar | 2002-07-11 | 1 | -1/+1 |
| | |||||
* | - Initialize var properly | Derick Rethans | 2002-07-09 | 1 | -1/+1 |
| | |||||
* | @- Added optional 3rd parameter 'recursive' to ftp_rawlist() which will | foobar | 2002-07-04 | 1 | -3/+4 |
| | | | | | | | @ do 'LIST -R' instead of 'LIST'. (Jani) # tested too..and it even works. :) # (removed that Z_TYPE_P() pollution also..) | ||||
* | Unify error messages | Derick Rethans | 2002-06-27 | 1 | -10/+10 |
| | |||||
* | - Fix #16348. | Markus Fischer | 2002-03-30 | 1 | -1/+1 |
| | |||||
* | Streams now make more use of the memory manager, so tracking down | Wez Furlong | 2002-03-17 | 1 | -2/+2 |
| | | | | | | leaking streams should be easier. # I hate these big commits | ||||
* | Allow php_stream_copy_to_stream to do nothing when used with code | Wez Furlong | 2002-03-16 | 1 | -1/+1 |
| | | | | | that calculates a max length of zero. (Thanks again Marcus). | ||||
* | This should help with some build problems/warnings under win32. | Wez Furlong | 2002-03-16 | 1 | -2/+2 |
| | | | | | | | Someone still needs to add the streams.c file to the MSVC project/workspace though (there are so many that I don't really know what I am doing :-). | ||||
* | New PHP streams... | Wez Furlong | 2002-03-15 | 1 | -44/+32 |
| | |||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 1 | -1/+1 |
| | |||||
* | - Now use ZE's builtin zend_zval_type_name(). | Markus Fischer | 2002-01-03 | 1 | -35/+1 |
| | |||||
* | - FTP_BINARY is more common instead of FTP_IMAGE. | Markus Fischer | 2002-01-03 | 1 | -1/+1 |
| | |||||
* | Please, no punctuation mark at the end of the description. | Egon Schmid | 2002-01-03 | 1 | -4/+4 |
| | |||||
* | - Corrected proto for ftp_connect() (new optional parameter for initial | Markus Fischer | 2002-01-02 | 1 | -1/+1 |
| | | | | | custom timeout). | ||||
* | - Added ftp_set_option(), ftp_get_option() and support for setting a | Markus Fischer | 2002-01-02 | 1 | -12/+115 |
| | | | | | | custom timeout. # Adding custom buffer size would be next, no promises though. | ||||
* | - Fixed ftp_fget() and ftp_mkdir() protos. | Markus Fischer | 2002-01-02 | 1 | -2/+2 |
| | |||||
* | - Corrected proto for ftp_fget(). | Markus Fischer | 2002-01-02 | 1 | -1/+1 |
| | |||||
* | - Switched to zend_parse_parameters(), unified error/warning messages, | Markus Fischer | 2002-01-01 | 1 | -373/+220 |
| | | | | | | use real resources instead of integers, adjusted prototypes (hope I got them all). | ||||
* | Fixed a proto. | Egon Schmid | 2001-12-30 | 1 | -1/+1 |
| | |||||
* | proto fix | Hartmut Holzgraefe | 2001-12-15 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | - Missed one | Andi Gutmans | 2001-12-03 | 1 | -4/+4 |
| | |||||
* | * zend_module_entry change: apino, debug and zts are moved first, | Stig Bakken | 2001-10-11 | 1 | -0/+10 |
| | | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) | ||||
* | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -1/+1 |
| |