ID: 29110
User updated by: fcurra at tecnonexo dot com
Reported By: fcurra at tecnonexo dot com
Status: Open
Bug Type: FTP related
Operating System: Linux 2.4.25
PHP Version: 4.3.7
New Comment:
Comment about behavior. If you don't use passive mode (comment line
ftp_pasv) then the warning doesn't appear. Any ideas?
Previous Comments:
------------------------------------------------------------------------
[2004-07-12 17:56:58] fcurra at tecnonexo dot com
Description:
------------
I need to retrieve files from a SSL-FTP connection.
I started working with PHP 4.3.3, but the function ftp_rawlist()
allways returned false with a specific FTP server (casually the one
which i need to connect, it works with others). So, after read comments
about other ocurrences of this problem i installed PHP 4.3.7 and tried
again. I though that maybe with the last PHP version this problem were
solved.
When i execute the reproduced code, received the actual result showed.
Reproduce code:
---------------
if( $conn_id = ftp_ssl_connect($ftp_host) ) {
$login_result = ftp_login($conn_id, $ftp_user_name,
$ftp_user_pass);
ftp_pasv($conn_id, true);
$pwd = ftp_pwd($conn_id);
$buff = ftp_rawlist($conn_id, $pwd);
var_dump($buff);
}
ftp_close($conn_id);
Expected result:
----------------
print the list of files.
Actual result:
--------------
Warning: ftp_rawlist(): php_connect_nonb() failed: Connection refused
(111) in /usr/local/apache_1.3.27/htdocs/nti/connect.php on line 44
bool(false)
** LINE 44 is ***********************
$buff = ftp_rawlist($conn_id, $pwd);
*************************************
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=29110&edit=1