flysystem Questions

4

Im trying to use the Laravel Flysystem with the sftp adaptor from PHP League (league/flysystem-sftp). Using Laravel 5.4 and version 3.7 of the Flysystem. When I attempt to put a file on the server...
Rimple asked 2/10, 2017 at 22:29

3

Solved

I'm trying to upload a MP3 file to a Laravel application and have ran into an issue where even though the file has an attribute set to "audio/mpeg" it is uploaded as a "application/octet-stream" (....
Barnes asked 20/9, 2016 at 13:1

10

Solved

I am trying to find out how to add in Metadata or headers (Expires, CacheControl etc.) to a file uploaded using the Laravel 5.0 Storage facade. I have use the page here as reference. http://larave...
Unlovely asked 11/3, 2015 at 14:41

3

I have a route in Laravel 7 that saves a file to a S3 disk and returns a temporary URL to it. Simplified the code looks like this: Storage::disk('s3')->put('image.jpg', $file); return Storage::d...
Leffert asked 5/4, 2020 at 13:43

2

Solved

UPDATE: Fixed it using the code from this PR, I've asked to assist in getting the PR merged, but for now my issues is sorted with a fork. Trying to upload to Google cloud storage via the following...
Horwath asked 13/5, 2020 at 15:56

12

Solved

I've been experimenting using the new Flysystem integration with Laravel 5. I am storing 'localised' paths to the DB, and getting the Storage facade to complete the path. For example I store screen...
Mouth asked 10/3, 2015 at 13:0

3

Solved

I am in the process of upgrading a project from Laravel 5 to 5.1. One package that needed to be updated was League\Flysystem. I am using Intervention\Image to resize an image and then Flysystem to...
Implicative asked 9/6, 2015 at 17:6

2

Solved

I want to use Storage::put to write a file. The file is potentially very large (>100MB), so I want to utilise a stream so I don't blindly place everything into memory. I'm going to be making multi...
Stephanistephania asked 17/10, 2017 at 16:16

1

Solved

I need to use BinaryFileResponse for correct handling of videos with Length Headers and co. Also I want the user to allow configured other storages (S3, Dropbox). The flysystem readStream method wi...
Steadfast asked 2/11, 2015 at 23:30

1

Solved

Upgrading to PHP 7.0.5 on Windows IIS (finally since the sqlsrv PDO drivers are available). I'm using Laravel 5.1 and when trying to connect to an FTP drive I get the following error from https://g...
Stolen asked 18/4, 2016 at 12:48

2

Solved

I'm developing an application that lets my users upload files, and I've made it works with "local" disk using filesystem feature, but now I want to migrate and use google Google Cloud Storage for i...

1

In my web-application built using laravel 5.1, users can upload some sensitive files that I store in Amazon S3. Later I want users WITH PERMISSION to download this file. Since I want this auth chec...
Bosnia asked 28/7, 2015 at 19:19

1

Solved

This is concerning Laravel 5. I can see in Illuminate\Filesystem\Filesystem a method called glob($pattern, $flags = 0) Unfortunately, this method is not reflected in the default FilesystemAdapter...
Oxford asked 19/4, 2015 at 12:29

1

Solved

I am using Laravel's Filesystem to store items on s3 and I am getting the wrong URL. Storage::disk('s3')->put('file.txt', 'Contents'); Gives me the error CurlException in CurlMulti.php line ...
Truda asked 3/4, 2015 at 17:18

2

I am storing files for a site on Rackspace using Flysystem. Uploading is no problem, having trouble figuring out how to start a download for a file - this is what I have tried Storage::disk('racks...
Watcher asked 25/3, 2015 at 21:34
1

© 2022 - 2024 — McMap. All rights reserved.