php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #67009 ftp:// stream wrapper doesn't work with Microsoft FTP Service
Submitted: 2014-04-03 11:55 UTC Modified: 2021-02-28 04:22 UTC
Votes:4
Avg. Score:3.8 ± 0.8
Reproduced:2 of 4 (50.0%)
Same Version:2 (100.0%)
Same OS:0 (0.0%)
From: vosa at binaryparadise dot com Assigned: cmb (profile)
Status: No Feedback Package: Streams related
PHP Version: Irrelevant OS: debian, solaris
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
29 + 5 = ?
Subscribe to this entry?

 
 [2014-04-03 11:55 UTC] vosa at binaryparadise dot com
Description:
------------
---
From manual page: http://www.php.net/wrappers.ftp
---
Hi,
I have some troubles with getting list of files from Microsoft's FTP server (Microsoft FTP Service) using ftp:// stream wrapper. There is difference in output, when trailing slash is used or not. I didn't see this problem, when other FTP server (i.e. pure-ftpd) is used.

I tried scan directory with scandir() function, but I get same output using readdir(). See test script.

There is a big problem to get list of files recursively. Directories with backslashes are incorrect and testing functions (like file_exists, is_dir, is_file) doesn't consider those paths correct.

This problem occured even with DirectoryIterator with or without trailing slash.

Test script:
---------------
# ftp folder structure:
# /test_folder
#   dir1
#     file1
#   dir2
#     file2

$path = 'ftp://user:password@192.168.1.1/test_folder/';

print "with trailing slash:\n";
foreach(scandir($path) as $file) {
    print "$file\n";
}

print "without trailing slash:\n"
$path = substr($path, 0, -1);
foreach(scandir($path) as $file) {
    print "$file\n";
}

Expected result:
----------------
with trailing slash:
dir1
dir2
without trailing slash:
dir1
dir2

Actual result:
--------------
with trailing slash:
dir1
dir2
without trailing slash:
test_folder\dir1
test_folder\dir2

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-02-17 15:24 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2021-02-17 15:24 UTC] cmb@php.net
I cannot reproduce this with PHP-7.4.  Is this still an issue for
you with any of the actively supported PHP versions[1]?

[1] <https://www.php.net/supported-versions.php>
 [2021-02-28 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 14:01:29 2024 UTC