Album Gallery not loading

I just updated my website using iweb and while most of the pages I'm using as a 'table of contents' for photo galleries uploaded, there is one page that is being stubborn.
http://www.sidneyerik.com/ModelingShots/ModelingShots.html
In iweb, the page has photos that link to 8 different photo galleries. However, NONE of these albums are loading on the master page. I don't understand why for all other pages it uploaded perfectly but this one is giving me trouble. What gives?

Welcome to the Apple Discussions. All of the pages and photos load fine for me. Have you tried clearing your browser's cache and reloading the page? For Safari it's CommandOptionE. It loads OK for me with Firefox 3.6.4 also.
OT

Similar Messages

  • Expose Gallery not loading to includes folder it seems?

    My includes folder may be messed up somehow or perhaps the expose gallery is not functioning percisely. The gallery is not loading more than 50 photos without crashing. Cant get a second album to download to the includes folder it seems. The function is just not working properly for some reason. Should I start over and reload the plugin? Also when I download It makes me download all of my entire folder again, it takes an hour or so when I only need to download the new gallery!

    I'm not familliar with Expose Gallery.  Is this a WordPress plugin?
    Nancy O.

  • Web gallery not loading properly

    I have links to 3 lightroom galleries on my website. Most of the time the gallery will not load unless you click the refresh button. This happens with safari and explorer. Is this a known issue and is there a way to fix it? My site is built with dreamweaver and I have built in links to the flash galleries from lightroom which just spin their wheels. It says it is loading, but never does unless you refresh or go home and try again.
    Thanks for any help.
    Ted

    I had the same problem but it went away when the galleries quit working at all <grin>. I think that module is really buggy. I did submit a bug report.<br />Mel

  • Thickbox gallery not loading on my website

    I have made a photo gallery for a website using thickbox, it is working fine in preview but when I put it to the site the photos are not loading/poping up. I have used thickbox and lightbox for photo galleries that worked fine but I do not understand what I am missing here.
    Here is the link:
    http://www.spotlightzambia.com/avastyla_designers.html
    I have tried to preview in chrome,firefox and explorer where it works fine but none of them load when the I try it after puting the files online.
    Please help

    Why no one replyed I'm having the same problem =(
    No link provided.  For answers to code related questions such as these, we need a URL to the problem page.
    It may interest you to know that ThickBox is not being supported anymore.  This is from their web site.
    While Thickbox had its day, it is not maintained any longer,
    so we recommend you use some alternatives.
    colorbox
    jQueryUI Dialog
    fancybox
    DOM window
    shadowbox.js
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • My photo albums do not load in Internet Explorer

    Is there many compatibility issues between Explorer (IE) and iWeb? The photo albums I created in iWeb'09 do not load in IE but it worked fine in Safari and Firefox. How do I resolve this issue? Any clue would be most appreciated.
    Karim

    What version of IE are you using to view the site? If it's the last Mac version then dump it as it's so old and obsolete it is less than worthless. If you're using a PC with IE then make sure you've got the latest version. See Roddy's site on making iWeb sites as compatible with IE as possible: http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    Here's a post by Roddy with links to areas of his site that are relevant: http://discussions.apple.com/thread.jspa?threadID=2021995&tstart=0

  • Zen M last final album track not load

    Whenever i load an album onto my M, the last track does not load. It only happens on cd's that have extra media attached to the last track e.g. videos. how do i change the setting to add that last track? i can add the track on after if i download it onto my computer.

    The undocking issue are you sure the arrows are still moving. I made that mistake when I first got the vision M. I thought it was still updating.
    The arrows stay still when you can remove the Vision M and kinda rotate, actually move when you are tranferring songs.
    Looks similar.
    As for the album art ill try that today and get back to you.

  • XML grid gallery not loading full images(except for one)

    hi,
    I just created my first flash website, but one of my XML image galleries is not working properly. I am using the same (code, layout, just different pics and xml files) gallery on 4 of my pages, however, one("products")  of the 4 will not load the "full" images. The thumbnails load, they decrease opacity when moused over, but once you click on one, the progress bar loads till complete and just stops. You can see the problem in action atwww.erikhigbee.com on the "Products" page. This problem, however, only occurred after I hosted it on iPage.com. When I test it (Ctrl+Enter) in Flash, test it in Dreamweaver or open the .html of it from my computer, everything works perfectly. It is only after I FTP upload all the files to iPage's server that this problem occurs. I made sure to keep the filetree the same and everything. Is it a problem with Ipage? Are too many images trying to load??
    Furthermore, for some odd reason the 1st image(left), 4th row down on the s"Products" page DOES load the full image but the others still dont and I can't for the life of me figure out why. All the code is exactly the same as on the other pages.
    Thanks for any and all help/advice you can give me!
    one thought(from posts on other forums) could be inefficient code.  Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. pops up whenever the thumbs are clicked.  idk if that helps.
    below is the code i used for the gallery. Could anyone take a quick look over it and see if any problems/inefficiencies jump out at ya??
    [CODE]import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.events.MouseEvent;
    import fl.controls.ProgressBar;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    var columns:Number;
    var my_x:Number;
    var my_y:Number;
    var my_thumb_width:Number;
    var my_thumb_height:Number;
    var my_images:XMLList;
    var my_total:Number;
    var container_mc:MovieClip;
    var preloaders_mc:MovieClip;
    var full_mc:MovieClip;
    var x_counter:Number = 0;
    var y_counter:Number = 0;
    var my_tweens:Array = [];
    var container_mc_tween:Tween;
    var full_tween:Tween;
    var myXMLLoader:URLLoader = new URLLoader();
    myXMLLoader.load(new URLRequest("gallery_hats.xml"));
    myXMLLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void{
    var myXML:XML = new XML(e.target.data);
    columns = myXML.@COLUMNS;
    my_x = myXML.@XPOSITION;
    my_y = myXML.@YPOSITION;
    my_thumb_width = myXML.@WIDTH;
    my_thumb_height = myXML.@HEIGHT;
    my_images = myXML.IMAGE;
    my_total = my_images.length();
    createContainer();
    callThumbs();
    myXMLLoader.removeEventListener(Event.COMPLETE, processXML);
    myXMLLoader = null;
    function createContainer():void{
    container_mc = new MovieClip();
    container_mc.x = my_x;
    container_mc.y = my_y;
    addChild(container_mc);
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc.buttonMode = true;
    preloaders_mc = new MovieClip();
    preloaders_mc.x = container_mc.x;
    preloaders_mc.y = container_mc.y;
    addChild(preloaders_mc);
    function callThumbs():void{
    for (var i:Number = 0; i < my_total; i++){
    var thumb_url = my_images[i].@THUMB;;
    var thumb_loader = new Loader();
    thumb_loader.load(new URLRequest(thumb_url));
    thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    thumb_loader.name = i;
    thumb_loader.x = (my_thumb_width+10)*x_counter;
    thumb_loader.y = (my_thumb_height+10)*y_counter;
    if (x_counter+1 < columns){
    x_counter++;
    } else {
    x_counter = 0;
    y_counter++;
    var preloader_pb:ProgressBar = new ProgressBar();
    preloader_pb.source = thumb_loader.contentLoaderInfo;
    preloader_pb.x = thumb_loader.x;
    preloader_pb.y = thumb_loader.y;
    preloader_pb.width = my_thumb_width;
    preloader_pb.height = my_thumb_height/10;
    preloaders_mc.addChild(preloader_pb);
    preloader_pb.addEventListener(Event.COMPLETE, donePb);
    function thumbLoaded(e:Event):void{
    var my_thumb:Loader = Loader(e.target.loader);
    container_mc.addChild(my_thumb);
    my_tweens[Number(my_thumb.name)]=new Tween(my_thumb, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_thumb.contentLoaderInfo.removeEventListener(Event.COMPLETE, thumbLoaded);
    function callFull(e:MouseEvent):void{
    var full_loader = new Loader();
    var full_url = my_images[e.target.name].@FULL;
    full_loader.load(new URLRequest(full_url));
    full_loader.contentLoaderInfo.addEventListener(Event.INIT, fullLoaded);
    var full_pb:ProgressBar = new ProgressBar();
    full_pb.source = full_loader.contentLoaderInfo;
    full_pb.x = (stage.stageWidth - full_pb.width)/2;
    full_pb.y = (stage.stageHeight - full_pb.height)/2;
    preloaders_mc.addChild(full_pb);
    full_pb.addEventListener(Event.COMPLETE, donePb);
    container_mc.removeEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = false;
    container_mc.removeEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.removeEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeIn, 1,0.5,0.5, true);
    function fullLoaded(e:Event):void{
    full_mc = new MovieClip();
    full_mc.buttonMode = true;
    addChild(full_mc);
    var my_loader:Loader = Loader(e.target.loader);
    full_mc.addChild(my_loader);
    full_tween = new Tween(my_loader, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_loader.x = (stage.stageWidth - my_loader.width)/2;
    my_loader.y = (stage.stageHeight - my_loader.height)/2;
    my_loader.addEventListener(MouseEvent.CLICK, removeFull);
    my_loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, fullLoaded);
    function removeFull(e:MouseEvent):void{
    var my_loader:Loader = Loader (e.currentTarget);
    full_tween = new Tween(my_loader, "alpha", Strong.easeOut, 1,0,0.5, true);
    full_tween.addEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeOut, 0.5,1,0.5, true);
    function donePb(e:Event):void{
    var my_pb:ProgressBar = ProgressBar(e.target);
    preloaders_mc.removeChild(my_pb);
    my_pb.removeEventListener(Event.COMPLETE, donePb);
    function tweenFinished(e:TweenEvent):void{
    var my_loader:Loader = Loader (e.target.obj);
    my_loader.unload();
    full_mc.removeChild(my_loader);
    removeChild(full_mc);
    full_mc = null;
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = true;
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    var my_tween:Tween = Tween(e.target);
    my_tween.removeEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    function onOver(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 0.5;
    function onOut(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 1;
    [/CODE]

    Hi,
    at www.lynda.com there is a great video tutorial.
    Search for Create and Embed a Photo Gallery in a PDF

  • SPRY ALBUM GALLERY not working in IE7

    Hi, I have created a spry album gallery using adobe's sample
    code and have test via dreamweaver - firefox 3.0 & IE7 to view
    the site. It works a treat.
    I have uploaded the files and now running live. One problem.
    I have type the web address into IE7
    (www.carreon.com.au/elyssa/pictures.html) and nothing appears
    except for the banner at the top. I have tried this in firefox and
    it works fine.
    I have made sure that the java script files are uploaded and
    have checked that my IE settings are correct. what did i do wrong??
    here is my page code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <link rel="stylesheet" href="css/style.css"
    type="text/css" />
    <title>ELYSSA'S PICTURES</title>
    <script type="text/javascript"
    src="includes/xpath.js"></script>
    <script type="text/javascript"
    src="includes/SpryData.js"></script>
    <script type="text/javascript"
    src="includes/SpryEffects.js"></script>
    <script type="text/javascript">
    <!--
    var dsGalleries = new
    Spry.Data.XMLDataSet("data/galleries.xml", "galleries/gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("{dsGalleries::@file}", "gallery/photo" );
    function MM_effectHighlight(targetElement, duration,
    startColor, endColor, restoreColor, toggle)
    Spry.Effect.DoHighlight(targetElement, {duration: duration,
    from: startColor, to: endColor, restoreColor: restoreColor, toggle:
    toggle});
    dsPhotos.setColumnType("file/@height", "number");
    dsPhotos.setColumnType("file/@width", "number");
    //-->
    </script>
    <link href="css/gallery.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div id="wrapper" align="center">
    <div id="banner" style="width:800px">
    </div>
    <div id="menu">
    <div align="right" class="smallwhitetext"
    style="padding:9px;">
    <a href="journal.html">Journal</a> |
    <a href="pictures.html">Pictures</a> | <a
    href="#">Videos</a> | <a href="#">Events</a> |
    <a href="#">Wishes</a> </div>
    <div class="smallgraytext" id="submenu"
    spry:region="dsGalleries">
    <label for="chooseGallery">Select gallery:
    </label>
    <select name="chooseGallery"
    spry:repeatchildren="dsGalleries" id="chooseGallery"
    onchange="dsGalleries.setCurrentRow(this.value)"
    spry:choose="spry:choose">
    <option value="{ds_RowID}" spry:when="{ds_RowNumber} ==
    {ds_CurrentRowNumber}"
    selected="selected">{name}</option>
    <option value="{ds_RowID}"
    spry:default="spry:default">{name}</option>
    </select>
    </div>
    <div class="thumbs" id="thumbs" spry:region="dsPhotos">
    <span spry:repeat="dsPhotos">
    <img src="images/small/{file}" width="50" height="50"
    onmouseover="MM_effectHighlight(this, 10, '#ffffff',
    '#CE317E', '#CE317E', false)"
    onmouseout="MM_effectHighlight(this, 10, '#CE317E',
    '#FFFFFF', '#ffffff', false)"
    spry:setrow="dsPhotos"/>
    </span>
    </div>
    <div class="mainPic" spry:detailregion="dsPhotos">
    <p><span class="smallredtext">
    </span><span class="smalltitle">
    </span><img src="images/large/{file}"
    alt="Images"/> <span class="smallredtext"><br
    />
    {caption}</span>
    </p>
    <p>
    </p>
    </p>
    </div>
    <div id="footer" class="smallgraytext">
    <a href="#">Home</a> |
    <a href="#">Journal</a> | Events
    <a href="#"></a> | Wishes
    <a href="#"></a> |
    <a href="mailto:[email protected]">Contact
    Us</a> |
    © 2009</div>
    </div>
    </div>
    </body>
    </html>
    please help me...
    thank you
    Jo

    Hi,
    Your server is serving up your XML files with a Content-Type
    of text/html. It should be text/xml or application/xml. IE is
    pretty particular about the Content-Type for XML files. It won't
    create an XML DOM document in the XHR response unless the
    Content-Type is one of the ones I mentioned above.
    --== Kin ==--

  • Bridge Web Gallery Not loading properly in Browsers   **HAAALP PLZ**

    Ok so here is the deal.
    Went to Bridge
    Created Multiple Gallerys
    Went to Dreamweaver
    Created a page and inserted all the pertinents and such.
    Uploaded to my site
    Was happy.....
    Good to go right?  Well it looks all good, and the Gallerys perform as they should with one problem.  My problem lies in the initial loading of the browser page.  Every gallery loads on the page with the starting picture offset. 
    Is this a problem with the gallery file that bridge creates or is there something on my html file that needs to be edited to make this shizz load like pro?
    Haaaaalp!
    Here is the page in question:  Polley3d.com - 3D Design Consulting Samples
    Here is an image to see what the fuzz I'm talking about:

    After waiting for 1 minute and 59 seconds during which 14.5 MB is processed, I am not surprised that style rules get mixed up.
    Loading one gallery as in
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    <iframe src="http://polley3d.com/WebGallery/Joan_Landscape_Gallery/index.html"width="1024" height="768"  frameborder="0" name="Joan_Landscape_Iframe"></iframe>
    </body>
    </html>
    took a mere 16 ms and processed 287 B of data. No problem here.
    As a side note, Flash is old old old technology.

  • Gallery not loading

    I'm trying to upload a photo gallery of 211 photos. Every time I send it I get a message "An error occurred while publishing the album "2007 Santa- Child & Family Center."
    Request to the server failed."
    I've tried creating the gallery with 80 photos and have the same result. I'm using cable with a connection speed of 5800kbps, so it shouldn't be a connection problem.
    Would appreciate any insight into this problem.

    Apple was having problems with the servers yesterday that handle mail and other .Mac functions. Give another try today.
    Happy Holidays
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Adobe Bridge Gallery Not Loading in .pdfs

    Recently I created a flash gallery with adobe bridge that I intend to embed into a pdf that will be available as a download via my company's website. I've attached the required resources directory as well as the appropriate flahvars required to display the content but for whatever reason my gallery hangs when trying to load the images. I have optimized the images for display on the web with file sizes ranging from 36kb to 114kb. There are twenty one pictures in total and I'm using the most recent versions of both bridge and acrobat. Any insight would be appreciated.

    Hi,
    at www.lynda.com there is a great video tutorial.
    Search for Create and Embed a Photo Gallery in a PDF

  • Album Artwork not loading in order with playlist

    Okay, so, I've arranged my playlist to group by artist, and uploaded it to the 3d generation nano (8G). The playlist loads in order, but two of the album artwork photos are mixed in at the end of the list instead of being grouped with the others by the same artist. I'm getting super frustrated. Is anyone else having the same problem? If so, do you know how to fix it?? Oh, and if it's relevent, I'm using the newest iTunes on Windows XP.
    Message was edited by: DOOMbudgie

    I'm having the same problem with the album artwork getting mixed up like that...I don't know what to do about it.

  • Album Art not loading onto whole ablum only individual song

    If I load a CD in to my iTunes library and then try to add album artwork to appear as the album plays I have to cut an past to each individual song. How do I load artwork so that is is attached to the whole album?
    On my powerbook, with older version of itunes I don't recall having this problem.
    Thanks.
    Jeff

    Before dragging and dropping artwork to the artwork pane, select all tracks of the album.
    Alternatively, select all songs of the album and Get Info (command-I).
    Then drag and drop the picture on the little artwork pane of the 'Multiple Song Information' window and click OK.
    Hope this helps.
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.4.6)   Several ext. HD (backup and data)

  • Album Art Not Loading

    Firstly I apologise if this has been answered elsewhere, if so, I am happy to follow a link.
    My problem:
    I have recently imported music from CD's. I have found the album art off the internet and I am trying to load the art but it doesn't do anything. It always works so I don't understand why it isn't this time. I have even tried converting the files into another format to see if that will help, but it makes no difference. The format of the images are .jpg.
    Thank you

    I had a problem I solved with QuickTime videos in and out of iTunes that solved by moving the iTunes Music library from my SATA drive to an external USB drive.
    After reading this thread I did a test by removing an album cover from an iTunes song. Re-selecting the same cover art located on my SATA drive took about 15-20 seconds to "acquire" the image. Then I did the same procedure but pointed the Add find to a copy of that cover from the USB drive. Acquisition took about 1/10-1/15th of a second. YMMV.

  • Received gift did not load

    I was sent a iTunes gift in an emailfrom iTunes which was gifted to me from a friend.
    I opened the email and clicked on theredeem button and my iTunes opened up and requested my iTunes password.  Ientered my password however the album did not load into my iTunes program on myMacBook Pro.  When I go to try it again I get a message indicating 'thecode has already been used'
    Need some help on how to redeem maygift.  The friend who sent me the gift has sent me her order number ifthat can help. I have confirmed that I have the latest iTunes update.
    ....james...

    I ran CPUID Hardware monitor and CPU-Z last time it was running normally and both showed all OK.
    I've just run them and they're only showing half the info eg mobo info not shownm graphics card info not shown.
    Is this just the driver or is it a symptom of the driver not loading?
    nick

Maybe you are looking for