Results 1 to 3 of 3

Thread: Fade-in slideshow working locally not online

  1. #1
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Fade-in slideshow working locally not online

    1) Script Title: Ultimate Fade-in slideshow (v2.1)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    3) Describe problem: Everything works fine when I preview on my computer locally. I have uploaded the files to the remote server and it doesn't work.
    I am a novice at this. I was very excited to see it work relatively easily. Can someone please help?

    http://www.redlampfilms.com/mongrel.html

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    It looks like the paths to the images inside the slideshow are incorrect:

    Code:
    var mygallery=new fadeSlideShow({
    	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    	dimensions: [1000, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image
    	imagearray: [
    		["Fadeshow/pic1.jpg", "", "", "Two crazy kids"],
    		["Fadeshow/pic2.jpg", "mongrel.html", "_new", "The Same Two Crazy Kids"],
    		["Fadeshow/pic3.jpg"],
    		["Fadeshow/pic1.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
    	],
    	displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
    	persist: false, //remember last viewed slide and recall within same session?
    	fadeduration: 500, //transition duration (milliseconds)
    	descreveal: "ondemand",
    	togglerid: ""
    })
    For example, if you look at the path in red hightlighted above, it points to a non existent image: http://www.redlampfilms.com/Fadeshow/pic1.jpg. If in doubt change all of the references above to absolute URLs.
    DD Admin

  3. #3
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks. I tried to remove the post before anyone saw it. I came in this morning and saw the problem straight away. (what a goose) Many Thanks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •