Upper and lower case letters used in paths and filenames almost always matter on the web and almost always do not on the local machine. Here is your image array:
Code:
imagearray: [
["images/Ads/bills ad.jpg", "", "", ""],
["images/Ads/car loan ad.jpg", "", ""],
["images/ads/Mem Access.jpg"],
["images/ads/Morton Credit Union Design Ad.jpg","","",""],
["images/ads/Pocket Change Ad.jpg", "", "", ""] //<--no trailing comma after very last image element!
],
There is no folder:
images/ads/
It's:
images/Ads/
Once you fix that, none of the images are there because they all end in (in your code):
.jpg
But on the server, they all end in:
.JPG
Fix all that and:
Pocket Change Ad
is really:
Pocket Change ad
I think I got all of them.
What you need to do is either change the code in the script to reflect the actual paths and filenames for these images, and/or change the paths and filenames to reflect how these are represented in the script code.
Generally it's best to just keep everything lower case, avoids confusion. I believe some servers even enforce that. Obviously yours does not.
The easiest thing here would be to change the code to reflect the actual path and filenames:
Code:
imagearray: [
["images/Ads/bills ad.JPG", "", "", ""],
["images/Ads/car loan ad.JPG", "", ""],
["images/Ads/Mem Access.JPG"],
["images/Ads/Morton Credit Union Design Ad.JPG","","",""],
["images/Ads/Pocket Change ad.JPG", "", "", ""] //<--no trailing comma after very last image element!
],
Once again, I think I got them all.
But in the long run you would be better off sticking to lower case wherever and whenever possible.
Bookmarks