|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-10-03 12:35 UTC] pollita@php.net
[2003-10-08 13:55 UTC] ctomele at hotmail dot com
[2004-09-28 20:43 UTC] pcatlin at plus dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 11:00:02 2025 UTC |
Description: ------------ Running: Win 2003 Server IIS 6.0 FTP is IIS 6, and also XServer (OSX) Gives an empty result. Tried latest stable 4 as well as Version 5.0.0b2-dev. I know this is beating a dead horse, I just didn't see anyone reporting it on IIS 6 and it seems to have come back. Reproduce code: --------------- $ftp_server = "10.10.1.242"; $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); ftp_login($conn_id, "####", "####"); $content = ftp_nlist($conn_id, "/"); echo "<pre>"; print_r($content); echo "</pre>"; ftp_close($conn_id); Expected result: ---------------- Should have listed directory contents. Actual result: -------------- Nada.