From: [EMAIL PROTECTED] Operating system: Windows XP final PHP version: 4.0.6 PHP Bug Type: FTP related Bug description: Empty strings on "nlist" and "rawlist"
Thank you for hearing me :) The problem is that whatever i try there is no data in any nlist or rawlist command i issue on my ftp server. I started out with IIS 5.1 (standard winXP) and ended with bulletproof FTP 1.25, both not giving any listings.. Some sample code: -------------- $dir=ftp_pwd($conn_id); $rawlist = ftp_rawlist($conn_id,$dir); $nlist = ftp_nlist($conn_id,$dir); if ($rawlist) { echo "<BR>Spawned value for nlist was ".$nlist; } else { echo "<BR>empty as usual.."; } if ($rawlist) { echo "<BR>Spawned value for rawlist was ".$rawlist; } else { echo "<BR>empty as usual.."; } echo "<BR>"; print_r($rawlist); print_r($nlist); -------------- where there: - was a connection in the 1st place ($conn_id) - i encountered not a single error message - i used the "if .. else" to prove my wrong - i received no data in my string I have seen various bug reports resembling what i've expierenced but none of them got answered because they all stopped giving information which ended in: "can't reproduce the error." I hope you (the brave volunteer) could help me.. :) Thanxx -- Edit bug report at: http://bugs.php.net/?id=13913&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]