Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
385 views

I'm using Laravel's filesystem with the S3 driver to connect to Backblaze B2's S3-compatible API. Here's my disk configuration in config/filesystems.php: 'disks' => [ 'b2' => [ '...
Dark knight's user avatar
1 vote
1 answer
95 views

I am trying to create a post form where the user can upload an image and the image isn't being saved as well as the asset model isn't creating a new entry. I am using Livewire and Laravel's Filesystem....
WPdev11's user avatar
  • 111
0 votes
1 answer
613 views

I'm trying to stream a video in Laravel 9 by using imanghafoori1/laravel-video package. but I keep getting an error message: fopen(C:...\storage\videoFiles/ui/2024-02-11-1-I6bnWsI8J0-128210 (Original)...
Laravel Learner's user avatar
0 votes
0 answers
369 views

Sorry i'm still new to this. I would like to access/read files from another PC within the same network using Laravel. I can access the files over mapped network drive from my PC. I have try to access ...
Hixx's user avatar
  • 31
1 vote
3 answers
2k views

I'm currently trying to figure something out. I have 2 AWS Accounts. Account A has a bucket called my_awesome_files. Account B has users, that would like to be able to see those documents in ...
linx's user avatar
  • 174
0 votes
0 answers
112 views

Storage::disk('test-s3')->put($fileName, fopen($file_s3, 'rb')); throws error Disk [test-s3] does not have not have a configured drivers3s Below is the file system configuration 'disks' => [ '...
Revz's user avatar
  • 33
3 votes
3 answers
590 views

I am trying to delete a folder on my server via sftp. I am using php 7.4.13 and laravel 7.30.4 I have set up my sftp drive and everything (upload, delete files, create directory) works fine. But the ...
eva li's user avatar
  • 31
0 votes
1 answer
987 views

i try to upload avatar photo on my user model, using laravel nova Fields\Avatar applying the simpliest code, but it return 0 value on my database, the disk already set to s3 disk in filesystem also ...
wetguns's user avatar
  • 31
0 votes
2 answers
1k views

I am trying to upload an image in Laravel. Getting the following error: "message": "Could not move the file \"C:\\xampp\\tmp\\php84AA.tmp\" to \"F:\\bvend\\bvend-web\\...
Wahidul Alam's user avatar
  • 1,227
2 votes
1 answer
662 views

In https://laravel.com/docs/9.x/filesystem#file-uploads I read as file custom file uploading : However, keep in mind that the getClientOriginalName and getClientOriginalExtension methods are ...
Petro Gromovo's user avatar
0 votes
0 answers
365 views

laravel returns 403 forbidded when trying to access a file I uploaded to a new directory that was created while uploading the file Please help what can I do?
Paulos Ab's user avatar
  • 409
1 vote
2 answers
1k views

The server sometimes encounter permission errors. When checked the cache directory the cache files are being written under different users and permissions. I guess the issue is causing because of that....
AH.'s user avatar
  • 823
-2 votes
1 answer
1k views

I am trying to upload an image and save it into a folder and database. But when I submit the form get all the data including the image file name but the image is not saved. In the database save as a ...
Muqadar Ali's user avatar
2 votes
2 answers
2k views

In Laravel filesystems you have the standard s3 details like below: 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID', 'your-key'), 'secret' => env('...
Lewis Smith's user avatar
  • 1,349
5 votes
1 answer
9k views

I have installed the s3 flysystem package by running the following composer command in my Laravel 8 project composer require --with-all-dependencies league/flysystem-aws-s3-v3 "^1.0" and ...
NIKHIL NEDIYODATH's user avatar
0 votes
2 answers
343 views

I wanna copy or move a directory to a new directory in laravel but the copyDirectory function always return false to me. Am I doing anything wrong with my code? Thanks in advance $destinationDir = '...
Hanyi Koh's user avatar
  • 337
0 votes
0 answers
46 views

I'm trying to upload an image in laravel and I'm using store method to save it in storage. $path = $request->file('avatar')->store('public/avatar'); It's working fine and save the file into ...
Ashkan's user avatar
  • 47
2 votes
0 answers
674 views

Hi everyone I stuck on Digital Ocean that I want to prevent my file from the public. First of all. I set the .env file like this DO_SPACES_KEY= THE KEY DO_SPACES_SECRET= THE SECRET DO_SPACES_ENDPOINT=...
Jill's user avatar
  • 49
0 votes
1 answer
2k views

This is a really strange one as it started throwing errors over night - it's been working fine up until yesterday - this morning it's been playing all day. I'm using illuminate/filesystem in my ...
Sebastian Sulinski's user avatar
1 vote
3 answers
7k views

I am working on Laravel 8.x. My task is to validate .PDF file on server side. Everyting working fine but when I upload a valid PDF file it is not validating and returning with an error. My source code ...
Ram Chander's user avatar
  • 1,686
0 votes
2 answers
1k views

I have a form with file upload. I am using vue, axios and laravel 7 at the moment. My form is as given below: <form v-on:submit.prevent="createTask" enctype="multipart/...
Kishan Suresh's user avatar
0 votes
1 answer
1k views

I'm working on adding media uploads to my custom CMS. To do this, I have tried multiple forms of the same upload function. When I click upload, the error says 'image' is a required field even with a ...
SpencerKMedia's user avatar
1 vote
1 answer
752 views

How can I get AWS S3 image as streaming view? Now I can see image as following url: <img src="https://s3.us-east-1.amazonaws.com/my-bucket/image.png" /> I want to get like this: <...
LoveCoding's user avatar
  • 1,201
1 vote
0 answers
1k views

I need make upload to a remote server. I made a new disk in filesystems.php And my upload code looks like this: $path = 'storage1'; $fileName = Str::random().'.'. $request->file->...
domiQ's user avatar
  • 51
1 vote
1 answer
9k views

I am trying to upload a file to a public folder which was working lately but now it is showing below error: Disk [public] does not have a configured driver. I tried checking for configured driver in ...
Santosh Upadhyay's user avatar