Image problem
-
our all images are saved in /assets/uploads/files/sample.png
As some problem arised on hostgtor server , all images which are used on website from last one year are not showing up . How to correct itplease help
eagerly waiting for your reply
Go through this link for understanding the problem : https://doubt.dubbtr.com/topic/15807/grignard-s-reagentOne more example : visit this profile
https://doubt.dubbtr.com/user/abhishek-singhAll the images used while asking questions by this student is lost , not showing . why this happening
-
You'll have to provide a bit more context around this sentence:
As some problem arised on hostgtor server
What problems? How were they resolved?
If you switched hosting providers but did not copy the contents of
public/uploads
from the old server to the new server, then you are likely out of luck and those uploaded files/images are gone. -
@Abhinov-Singh-0
all images are there , but when doing ./nodebb status
-bash: ./nodebb: Permission denied is comingCan you please tell why ?
-
@Abhinov-Singh-0 A permission denied error means that some or all of the files in that directory are owned by a user that is not the same user as you are logged in as.
It also suggests that the images may have restrictive privileges that do not allow them to be read by the user running the NodeBB process.
Try this:
cd /path/to/nodebb sudo chown -r $USER public/uploads
Then try to run NodeBB again.