|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-10 17:12 UTC] mikeg at sultran dot com
[2002-10-10 18:35 UTC] sniper@php.net
[2002-10-10 19:55 UTC] mikeg at sultran dot com
[2002-10-10 20:02 UTC] mikeg at sultran dot com
[2002-10-10 20:09 UTC] sniper@php.net
[2002-10-10 21:46 UTC] mikeg at sultran dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 11:00:01 2025 UTC |
I have checked all the other bug reports for this issue but they have all been closed. I just downloaded the newest version php4-win32-STABLE-200210101600.zip from snaps.php.net and it still doesn't work. I have tried this with NT4/IIS4 and XP/IIS5, both running in 'cgi' mode. The code I am using: $con = ftp_connect('192.168.3.18',21,30); $rc = ftp_login($con,'ftpclient','*'); if ($con) { $rawlist = ftp_rawlist($con,''); $nlist = ftp_nlist($con,''); echo 'rawlist<br>'; print_r($rawlist); echo 'nlist<br>'; print_r($nlist); ftp_close($con); Thanks.