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
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: vosa at binaryparadise dot com
New email:
PHP Version: OS:

 

 [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: Tue Mar 19 08:01:29 2024 UTC