I'm getting this error in the console:
http://dinofan.com/playlist.json Failed to load resource: the server responded with a status of 404 (Not Found)
Either you failed to upload it or, perhaps it's saved in a different case. Upper and lower case letters in filenames are usually seen as meaning the same thing on a local computer, generally they indicate different files on the server.
But, I'm thinking more likely you just neglected to upload it or put it somewhere else than the code is expecting to see it. It should be in the root folder of the domain.
But it might be there. If I try to navigate directly to it, I get a different error message directly from the server. Go to this link to read it (note, since this has been fixed, you will now see the intended file if it's still there):
http://dinofan.com/playlist.json
If that doesn't make sense to you, ask your host for support. It's a fairly simple matter generally, in your configuration you can set files with the .json extension to be the type of file that can be accessed.
It's also possible you could rename it to a .txt file and change where it's referenced in the code to look for that type file, but that might cause other problems, but should work. call it playlist.txt upload it as that, then in the code on the page change:
Code:
$("#pan_area").smoothslider("install", {
"playlist_url": "playlist.json", // get the playlist and some config from the server
to:
Code:
$("#pan_area").smoothslider("install", {
"playlist_url": "playlist.txt", // get the playlist and some config from the server
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks