Home » Networking » Net_FTP » Bug #7102
Usage of ftp_nb_put() in FTP::put() is incredibly slow
Details
| Submitted | 2006-03-12 19:04 UTC |
|---|---|
| From | hw at cho dot de |
| Assigned | jorrit |
| Status | Closed |
| Package | Net_FTP |
| PHP Version | 4.4.2 |
| OS | Linux |
| Roadmaps | 1.4.0a1 |
Comments
[2006-03-12 19:04 UTC] hw at cho dot de
Description:
------------
PHP's own ftp_nb_put() does render uploads incredibly slow. Omitting it results in multiples faster upload.
Test script:
---------------
function put($local_file, $remote_file, $overwrite = false, $mode = null){
[...]
if (0 && function_exists('ftp_nb_put')){
[...]
}