Skip to content Skip to sidebar Skip to footer

Script Works In Localhost But Not On Server

I have this problem where a code is working on localhost but not when I upload it to the server. I want to implement this: Polaroid Photobar Gallery Here's a link to my website: Zo

Solution 1:

seems like that the file system is case sensitive on the server, bug insensitive on your local machine.

all images with suffix in lower case (*.jpg) could be loaded sucessfully, but upper ones (*.JPG) failed (404 not found). as your code always try to get the image with lower case

on your website:

enter image description hereenter image description here

It should be:

enter image description here

Post a Comment for "Script Works In Localhost But Not On Server"