开发者

jQuery Gallery will show locally on Firefox and Chrome but won't work online

开发者 https://www.devze.com 2023-04-02 21:13 出处:网络
I tested a jQuery-gallery locally in every browser available. Worke开发者_运维问答d like a charm. However; when i upload everything to my server it won\'t load properly. Looked in the source but could

I tested a jQuery-gallery locally in every browser available. Worke开发者_运维问答d like a charm. However; when i upload everything to my server it won't load properly. Looked in the source but couldn't find the flaw.

Any ideas?

URL: http://www.pastisamsterdam.nl/proto/impressie.html


The problem is not your server, is your paths. The folder /proto/Images/impressie/ does not exist on your server, but /proto/images/impressie/ is, this means you have a unix based system which is case-sensitive.

Change the images path to /proto/images/impressie/ and your script should work.


Use Firebug for these kind of problems. Path (http://www.pastisamsterdam.nl/proto/Images/impressie) to your images is not valid, that's why they are not loaded.


Change Images to images and it will work. Because your server is case-sensitive, I think :)

Happy coding ^^


Update the image src to link to the correct url, if you posted the actual path to the image, i can tell you the src for the image.

0

精彩评论

暂无评论...
验证码 换一张
取 消