Results 1 to 7 of 7

Thread: Ultimate Fade-in slideshow images not coming in

  1. #1
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-in slideshow images not coming in

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

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

    3) Describe problem:

    I believe I set everything up correctly per the script instructions, but my images just will not come in. All I get is a black box where the images should be. My website is at www.ottoandsons-nursery.com/test

    Here is my code:

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

    <script type="text/javascript" src="fadeslideshow.js">

    /***********************************************
    * Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
    ***********************************************/

    </script>

    <script type="text/javascript">

    var mygallery=new fadeSlideShow({
    wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    dimensions: [900, 270], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
    ["http://www.ottoandsons-nursery.com/Roses_slide2.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide7.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide4.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide8.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide3.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide1.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide5.jpg"],
    ["http://www.ottoandsons-nursery.com/Roses_slide6.jpg"] //<--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: "none",
    togglerid: ""
    })

    </script>

    ----------------------------------------------------------------

    This is what I call in the page (template): <div id="fadeshow1"></div>

    This is the top of my stylesheet:
    <!DOCTYPE HTML>
    @charset "utf-8";
    /* CSS Document */

    -----------------------------------------------------------------

    This is what I have at the top of the JS file:

    var fadeSlideShow_descpanel={
    controls: [['http://www.ottoandsons-nursery.com/images/x.png',7,7], ['http://www.ottoandsons-nursery.com/images/restore.png',10,11], ['http://www.ottoandsons-nursery.com/images/loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
    fontStyle: 'normal 11px Verdana', //font style for text descriptions
    slidespeed: 200 //speed of description panel animation (in millisec)
    }

    -----------------------------------------------------------------

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    there could also be other problems but this report:

    Code:
    Broken Images - http://www.ottoandsons-nursery.com/test/
    
        http://www.ottoandsons-nursery.com/Roses_slide2.jpg
        http://www.ottoandsons-nursery.com/Roses_slide7.jpg
        http://www.ottoandsons-nursery.com/Roses_slide4.jpg
        http://www.ottoandsons-nursery.com/Roses_slide8.jpg
        http://www.ottoandsons-nursery.com/Roses_slide3.jpg
        http://www.ottoandsons-nursery.com/Roses_slide1.jpg
        http://www.ottoandsons-nursery.com/Roses_slide5.jpg
        http://www.ottoandsons-nursery.com/Roses_slide6.jpg
        http://www.ottoandsons-nursery.com/images/loading.gif
    from Firefox Developer Tools indicates (upon closer inspection) that the images are all 404 Not Found.

    Perhaps you forgot to upload them, or uploaded them to a different folder. Or they could be there under different names. Be aware that upper and lower case letters matter on the web, so if it's like:

    Roses_Slide1.jpg

    It's not, but if it were, using:

    Roses_slide1.jpg

    like you have will not work.

    In any case, you have to either upload the images to where they are expected to be or if they're already there somewhere, change their addresses in the code so that it points to them correctly.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks John for that.

    I did notice that when I placed the new 'test' website in a sub-folder 'test' under the domain www.ottoandson-nursery.com, I forgot to make the change in the file location as follows:

    http://www.ottoandsons-nursery.com/Roses_slide2.jpg

    should have been...

    http://www.ottoandsons-nursery.com/t...ses_slide2.jpg

    After I made this change, and uploaded the index.html file, they are still not coming in. I did initially upload the files to the correct place on the server and I did double-check the filenames for correctness. ???

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I think you uploaded your corrected index page to the root folder by mistake. It's working fine here (though all the other images on the page are missing):

    http://www.ottoandsons-nursery.com/index.html

    The paths for the slideshow images are correct on that page, but still wrong on:

    http://www.ottoandsons-nursery.com/test/index.html
    Last edited by jscheuer1; 01-27-2012 at 10:07 AM. Reason: add - The paths are correct . . .
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi John,

    This is the 'old' site: http://www.ottoandsons-nursery.com/index.html

    This is the new site: http://www.ottoandsons-nursery.com/test/index.html and why I installed it in '/test' in order to test it before replacing the old site.

    Still not working...

    Do you think it's because the script will not run in a sub-folder as opposed to the root?

  6. #6
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    OK, you've changed things again since my last post. Now there is no index.html in the root and you've moved the images to the test folder.

    So the page in the test folder still has the incorrect paths on it because the images are, for example now here:

    Code:
    http://www.ottoandsons-nursery.com/test/Roses_slide2.jpg
    Not here:

    Code:
    http://www.ottoandsons-nursery.com/Roses_slide2.jpg
    as currently listed in its code.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  7. #7
    Join Date
    Jan 2012
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks John for all of your help!!! -Larry

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
  •