From:             [EMAIL PROTECTED]
Operating system: NT4, XP Pro
PHP version:      4.2.3
PHP Bug Type:     FTP related
Bug description:  ftp_rawlist and ftp_nlist still return nothing

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.
-- 
Edit bug report at http://bugs.php.net/?id=19855&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=19855&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=19855&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=19855&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=19855&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=19855&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=19855&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=19855&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=19855&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=19855&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=19855&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=19855&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=19855&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=19855&r=isapi

Reply via email to