Home > front end >  Laravel8 storage files not found
Laravel8 storage files not found

Time:03-05

php artisan storage:link

local worked fine. After deployment without start php artisan serve it doesnt find the files in storage. Symlink is online.

CodePudding user response:

ok if I make symlink on my own it worked fine.

use ln -s ../storage/app/public storage

instead of php artisan storage:link

CodePudding user response:

If you have access to ssh or to the remote terminal:

php artisan storage:link
php artisan config:clear
  • Related