Home > Blockchain >  laravel storage link not working on another system
laravel storage link not working on another system

Time:12-13

I have an existing laravel project that I wrote on a Windows PC, I tried to copy the project to a MacBook and it runs well, but the problem is the storage:link doesn't work, all the picture I save in the storage folder can't be accessed through the app, I tried to enter the link of the files manually on the browser and it's still doesn't work.

I also checked the folder and the files, they still exist.

I'm still new in using Mac, does anyone have a solution?

Thanks in advance.

CodePudding user response:

Once you move the project to another system or directory , you need to recreate the symlink. Re run the command

php artisan storage:link

CodePudding user response:

I am not sure, maybe this is for wrong file locations. well, if you can find the folders you want to link you can run a raw command anyway

ln -s /project_folder/storage/app/public /project_folder/public/storage
  • Related