Photos with JPG as extension name will result 404 for those photos
Change JPG to jpg and reupload all the photos will solve this problem.
Thank you :)
@lucky13820 I dont know where i am goin wrong, but i cant seem to rename from JPG to jpg. What did you do? Thanks!
I first change the extension name to jpg first. Then I move all the photos in photos/original out to other place. Then commit it as removing all photos. Then move all the photos back and commit it again.
Hi @lucky13820 Sorry but i dont get it. I cant actually change it to jpg, it automatically saves as JPG.
Hi @lucky13820 Sorry but i dont get it. I cant actually change it to jpg, it automatically saves as JPG.
Then I'm not sure. I'm doing everything on my Mac.
A workaround while inside photos/original/ is to run this command:
for img in *.JPG ; do mv -- "$img" "${img%.JPG}.jpg" ; done
This takes all images with the extension .JPG and changes to .jpg.