Can't upload files to created disk in Laravel - laravel

I have my public folder files in /public_html/ and other files and folders in /public_html/files. Everything works fine except I can't link my storage directory via php artisan storage:link command because of my DirectAdmin host with limited functionalities. So I decided to create a new disk in public folder which is /public_html/. I added the following code to config/filesystems.php:
'uploads' => [
'driver' => 'local',
'root' => public_path() . '/uploads',
],
Also used this code to upload files in controller but it upload file somewhere except the disk I defined.
$request->file('avatar')->store('avatars', 'uploads');

In your new disk, you defined root folder as public_path which is public folder, not storage/app/public folder, your image saves in public/uploads/avatars directory if you want to move them to storage folder, Try:
'uploads' => [
'driver' => 'local',
'root' => storage_path('app/public') . '/uploads',
],

Related

SOLVED - Laravel 5.8 Save file and image in another project and retrieve it

i have two project in laravel 5.8.
First in sub1.domain.com
Second in sub2.domain.com
With sub2 i save images and files.
I need to view the image and files from sub2 and sub1.
Where is the best directory store for sharing the image and files ?
I have a shared hosting.
Thanks.
UPDATE - SOLVED
I have changed my filestystem config in this mode:
'public' => [
'driver' => 'local',
// 'root' => public_path() . '/uploads',
'root' => '/home/xxx/www',
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
Now the file is stored in "public_html" of my "website.com" on my hosting for every subdomain.
Thanks everybody.
The docs state
The public disk is intended for files that are going to be publicly
accessible. By default, the public disk uses the local driver and
stores these files in storage/app/public. To make them accessible from
the web, you should create a symbolic link from public/storage to
storage/app/public
Assuming all your images & files will be publicly accessible, follow those instructions.
Then, instead of using asset('storage/file.txt') to print out the publicly accessible url, you could use a value from your .env file to get the path, which would be something like "https://sub2.domain.com/images/" and then just append your file name.
Or write a custom helper method that allows you to specify the subdomain, something like custom_asset('storage/file.txt', 'sub2')
you can upload in public folder as symbolic link is hard hard to make cpanel
modify ur
filesystems.php
in
'public' => [
'driver' => 'local',
'root' => public_path('app/public/uploads'),
'url' => env('APP_URL').'/uploads',
'visibility' => 'public',
],
in above linke
ur upload path will be
public/uploads
and
\Storage::url('example.png') to get full image url

Laravel storage file

in my shared hosting (without SSH) my laravel installation save file from form only in storage/app/public/namefolder but not in storage/namefolder and this causes the files not to be displayed.
How can I solve it? Is there anything I need to change in the filesystem of the online site on shared hosting? or do I have to do anything else?
thanks a lot
this is where i store my file
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
i think your problem that you can not make the symlink command for storage as you do not has a SSH
php artisan storage:link
this command will create a symlink - a shortcut- to storage directory inside public directory,
there is several ways to apply this command with out accessing server via SSH
Route::get('artisan-command', function(){
Artisan::call('storage:link');
});
or you can call it with in a class
after you run the command every thing will work just fine , and no need to change config more than usual stuff.

error `Missing storage symlink` for voyager admin panel in cPanel

I have uploaded a voyager admin panel in my cPanel.
It gives error Missing storage symlinkand images are not shown of new added item.
Suppose I want to add a new user. All information is shown of new user accept user avatar.
In locally error is easily fixed by running the cmd php artisan storage:link.
But in live server how to fixed this error ?
I have already change the path of storage driver in config/filesystems.php. Change the path from storage_path() to public_path()
'public' => [
'driver' => 'local',
'root' => public_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
FIXED !!
Delete public/storage folder and run the command in cmd
php artisan storage:link
It is a path related problem. I have changed the App_url in my .env file. Now it's successfully showing the image.
I had the same issue. It happened because the file structure or something changed from the original Laravel setup. For me, I switched from using Artisan to vagrant.
I resolved by logging into vagrant and removing the original symlink:
rm -rf /home/vagrant/code/public/storage
I went ahead and created the new symlink but you should now be able to click the Fix link in Voyager admin to create the new one.
ln -s /home/vagrant/code/storage/app/public /home/vagrant/code/public/storage
You need to change the storage path into de filesystems.php file
to:
'public' => [
'driver' => 'local',
'root' => storage_path('./../../public_html/storage'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
this works for me !
cd public_html
ln -sr ../storage/app/public storage
I've fixed this by deleting the public/storage link and folder and then create again the folder and then:
php artisan storage:link
EDIT:
I also had to set this configuration in the filesystems.php
'public' => [
'driver' => 'local',
'root' => public_path('storage'),
'url' => env('APP_URL').'storage',
'visibility' => 'public',
],
I've fixed this by most easy way:
remove storage folder from public directory, then hit fix button from
admin area

Laravel 5.4 producing public/uploads/avatar folder

I have a fundraising platform built with Laravel 5.4. I've been successful in removing the public from the URL and hiding both the .env and composer.json files from view, but I can't upload an avatar to the upload/avatar folder from the admin or user account because Laravel produces a public/uploads/avatar folder and uploads the avatar into it instead of into the upload/avatar folder where it needs to go.
I have tried updating routes and usercontroller but to no avail. I'm not sure where to look now.
Can someone help me out with telling me where I go to change the code so Laravel no longer produces a public/uploads/avatar folder when I upload an avatar so the avatar goes into the upload/avatar folder instead?
Thanks.
In Filesystems.php
Change this:
'public' => [
'driver' => 'local',
'root' => public_path(),
],
To this:
'public' => [
'driver' => 'local',
'root' => '/',
],

Laravel Storage, File not found

In my public folder I have and uploads folder. I am trying to move a file into a sub folder.
Storage::move('uploads/myfile.gif', 'uploads/newfolder/myfile.gif');
However I get the errir, file not found at path: uploads/myfile.gif
Any ideas why the file is not being found? I have set the permissions to 777 for the uploads folder and the files.
In filesystems.php add a driver
'uploads' => [
'driver' => 'local',
'root' => public_path(),
],
Then
Storage::disk('public')->move('uploads/myfile.gif', 'uploads/newfolder/newfile.gif');

Resources