Laravel-FTP icon indicating copy to clipboard operation
Laravel-FTP copied to clipboard

A simple Laravel 4/5/6/7 ftp service provider with basic ftp methods.

Results 8 Laravel-FTP issues
Sort by recently updated
recently updated
newest added

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 8.x. **Before merging**, you need to: - Checkout the `l8-compatibility`...

What does this mean? My credentials are correct but I can't get my files while in ftp my files are there. However, in my other application that uses ftp anchu...

The FTP class blindly assumes that the server it's connected to supports Unix style directory listing. This is not the case for non-configured Windows FTP servers. `ftp_rawlist` returns a list...

bug

Hi, I've found a bug when trying to import files with more that one space in the name. Here is a fix : public function getDirListingDetailed($directory = '.') { if...

Can you provide a fluent interface like this? ``` php FTP::connection('foo')->changeDir('bar') ->makeDir('abc') ->changeDir('abc') ->uploadFile('foobar.txt', 'barfoo.txt') ->getDirListing(); ``` It's not a necessity but I think this would improve the ease of...

enhancement