|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-12-05 17:07 UTC] PaulMenard1 at yahoo dot com
In the Bug #20536 ftp_nlist, ftp_rawlist returns nothing I have upgraded my PHP to the most current. Following from 'php.exe -v' PHP 4.4.0-dev (cli) (built: Dec 4 2002 20:18:55) Zend Engine v1.4.0 I have a very simple script that was taken from the help pages on ftp_rawlist(). On my server connnecting to 'localhost' or '127.0.0.1' or the actual local DNS name STILL does not result in anything being provided. I can connect to remote Win/*nix servers under anonymous and specific users and the function works great. After reading various posting and answers about the bug being fixed and in CSV from 11/30 I have waited and waited until Dec 5 in hopes I could finally get this working. I can change the Web server from IIS to Apache sorry. Does anyone have answers to this? Paul PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 18:00:01 2025 UTC |
Okay. More information. I have the followinf script running under W2K Advanced Server, IIS5 $conn = ftp_connect("localhost"); ftp_login($conn, "ftptest", "ftptest"); $nlist = ftp_nlist($conn, ""); $rawlist = ftp_rawlist($conn, ""); echo "<pre>"; echo "Values from ftp_nlist()<BR>"; print_r($nlist); echo "Values from ftp_rawlist()<BR>"; print_r($rawlist); echo "</pre>"; The result of this PHP script execution is the output of nothing. Under this account's home folder there are 3 sub-folders 'Inbound', 'Outbound' and 'Archive'. Also there are 3 files '1.txt', '2.txt' and '3.txt'. If I change the 'localhost' reference in the connect statement the script does report the expected results. Actually any connection to a remote server either of type Windows or Unix seems to work. What does not work is the connection to the reference 'localhost', '127.0.0.1' etc. Also, I have tried executing this script under IIS and from a command prompt. The same empty results are reported. Under IIS I have only attempted using the 'php-cgi.exe' or CGI version. I have not attempted the isapi version just because I am unsure of stability for other aspects of my applications. Enough?