Hello, I use the version 2.10.3 it works perfectly.
I have a problem, does anyone know how to solve the image problem? When uploading a photo, the server says the photo was not found 404# Error.
I have already run the (Fix Image) in the admin menu, unfortunately it did nothing?
Is there another way to solve it?
Backend Images not showing?
Please check that you have set the
APP_URL in the
.env to your domain url.
Run the command in your terminal in the backend
1
php artisan storage:link
Copied!
Image still not loading
Image still not loading, then run this command
Then run this command
1
ln -s /DIR_TO_PROJECT_FOLDER/storage/app/public /DIR_TO_PROJECT_FOLDER/public/storage
Copied!
Replace
DIR_TO_PROJECT_FOLDER with path to the project folder on your server
1
ln -s /DIR_TO_PROJECT_FOLDER/storage/app/public /DIR_TO_PROJECT_FOLDER/public/storage
Copied!
Replace DIR_TO_PROJECT_FOLDER with path to the project folder on your server
In some case you might have to run the command like below:
In some case you might have to run the command like below:
1
ln -s /storage/app/public /public/storage
Copied!
Note:
If after running any of the commands above got an error about
file exists. Then run the command below first, then run the linking command again
1
rm -R public/storage
Copied!