How to manage a Web Gallery?

I posted a Web Gallery from Aperture to .mac. How to access the page to edit, or remove from the web?
How to add it to my Home page on my .mac account?
I could not find the answer in Help. Help!

you can get to and delete it in your iDisk/Sites folder
the address is http://homepage.mac.com/username/nameofsite
so make a link pointing to that in iWeb (or whatever you are using)
note that iweb creates sites in iDisk/Web, not iDisk/Sites

Similar Messages

  • How to restore a Web Gallery from my backu

    I noticed today that one of my Web Galleries was gone. I'm sure I didn't delete it. I entered into Time Machine while still in iPhoto '08 and stepped back in time until the missing Web Gallery showed up. Apparently it got "deleted" a few days ago but it's there in the backup. Trying to restore the web gallery attempts to restore the actual photo files which is Not what I need. I need to restore the little Gallery "playlist" thing in the Source Pane on the left.
    I dug through my backups on my time machine disk and found the backed up iPhoto Library when the gallery still existed and after opening the package contents and looking through the AlbumData.xml file in Text Edit I could see that, yes, the code for my missing Web Gallery is there.
    Here's my problem... How do I get that back into iPhoto???
    I tried cutting and pasting the relevant code into today's current .xml file and then re-opening iPhoto. No go. In fact the code I pasted in is removed again by iPhoto.
    Next I tried replacing the entire .xml file with the back up version. No go. iPhoto again removes the code for the missing Web Gallery.
    I'm at a loss.
    And I'm a little worried that a web gallery can just up and go missing. And that there is no way to get it back from a backup.
    What can I do??
    -Don

    Don:
    Time machine will not restore just the database file. You will have to restore the entire library. BUT you can have it keep the current library (it is renamed iPhoto Library (original). Then take the Library6.iPhoto file out of the restored library, put it in the original library (make sure you've not imported or deleted any photos since that backed up version was made) and use the original library again.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) 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 or later), 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 6 and 7 libraries and Tiger 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.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How to add a web gallery to Yahoo Sitebuilder

    I understand YS is not the ultimate tool  for creating a website - however it is what we have available and is what is used presently. Can someone please advise what type of web gallery is easiest to load into YS ( I do understand the basics of creating a web gallery - tags, layout, etc...) not too up to date on what format is best for a webpage in Yahoo Sitebuilder (and how to put it in place for use).
    Many thanks!

    if it is a web application just make the iView as a URL iView.
    Specify the URL in the iView.
    Cheers
    Chinmaya
    Reward points for helpful answers

  • How to reset the web gallery???

    I have deleted all albums in iPhotos. However, one album cannot be deleted from the web gallery. How can I reset the web gallery?
    PLEASE HELP!!!

    In the finder go to your iDisk ==> Web ==> Sites ==> _Gallery and drag the folder(s) you want to delete to the trash
    Larry Nebel

  • How to get .mac web gallery albums on iphone?

    hi just wondered if and how to view web gallery albums on an iphone without using safari to log into.mac. thought there may be a way of an automatic sync between the iphone and .mac web gallery?
    i know you can send photos to the web gallery but dont know how to do it the other way around if that makes any sense?
    thanks rob

    One thing to check out.
    If the person who created the .mac web gallery allowed for downloads, then you could download the photos to iphoto then sync to the iphone.
    Otherwise you would need to open the .mac gallery in safari.
    Hope this helps.

  • How do I edit web gallery pictures uploaded by guests?

    I used iPhoto to post to a Mobileme gallery. I invited others to upload their snapshots. Now that there are new photos from others, I'd like to edit arrange and label them. Are they going to be synced with me iphoto database? How else can I control this content on my web gallery?

    I was too impatient. Just a few minutes later, iPhoto synced the uploaded photos and I can edit, crop, label and arrange!

  • How to manage Struts web application unavailbility ?

    Hello !
    I have a web application (portal) based on Struts framework. And I am wondering how is the best way to manage the portal unavailbility (for maintenance reasons for example) ?
    We can deploy a new web application/page saying that "the portal is unavailable for the moment" but it is a heavy solution and not proper for people that are currently using the portal. So not good.
    Maybe I should check in the init Action of the portal in a database if the portal is available or not... but how to manage people who are currently logged in ? should I check this state in each action of the portal ? it is quite repetitive...
    Do you have any idea ?
    Thanks for advice.

    The simplest, lowest impact, lowest risk solution would be to use a filter:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class AvailabilityFilter
    implements Filter
       // private member variables for connection url/user/pass or JNDI
       // resource name
       // private getters and setters
       public void init( FilterConfig config )
          // Read necessary filter init-params here, like connection parameters
          // or the JNDI resource name of a connection pool used to determine
          // availability.
       public void destroy( )
       public void doFilter( ServletRequest request, ServletResponse response, FilterChain filterChain )
          if( this.isAvailable( ) )
             filterChain.doFilter( request, response );
          else if( response instanceof HttpServletResponse )
             HttpServletResponse httpResponse = (HttpServletResponse)response;
             response.sendError( 503, "Application temporarily unavailable" );
          else
             response.getWriter( ).println( "Application temporarily unavailable" );
             response.getWriter( ).close( );
       private boolean isAvailable( )
          // Attempt to connection to the database and/or check availability status
          // Return true if available, false otherwise
    }Now, as far as managing existing user sessions goes, you can also implement an HttpSessionListener to track sessions:
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class SessionTracker
    implements HttpSessionListener
        private static Map activeSessions = new HashMap( );
        public void sessionCreated( HttpSessionEvent event )
            HttpSession session = event.getSession( );
            synchronized( activeSessions )
               activeSessions.put( session.getId( ), session );
        public void sessionDestroyed( HttpSessionEvent event )
            HttpSession session = event.getSession( );
            synchronized( activeSessions )
               activeSessions.remove( session.getId( ) );
        public static void closeAllSessions( )
            synchronized( activeSessions )
                for( Iterator i = activeSessions.entrySet( ).iterator( ); i.hasNext( ); )
                    Map.Entry entry = (Map.Entry)i.next( );
                    String sessionId = (String)entry.getKey( );
                    HttpSession session = (HttpSession)entry.getValue( );
                    session.invalidate( );
                    i.remove( );
    }Some user event could call a servlet which would set a flag in the DB marking it as down for maintenance and then call the static method SessionTracker.closeAllSessions( ), which effectively logs everyone out. Any attempts to access the app after that period would fail; the filter would try to connect and/or check the flag in the DB and would throw an HTTP 503 instead of executing the rest of the filter chain. No reconfiguration would ever be necessary, and you wouldn't be changing code, just adding these two new classes and a couple of entries in web.xml.
    Hope that helps,
    - Jesse

  • How to include Aperture web gallery in dreamweaver site

    With the demise of mobile me I need to find a way to keep my personal website photo albums (web galleries) that I currently publish via Aperture web gallery and then use a hyperlink from my Dreamweaver web site. This means visitors can view the photo's from a link button but the actual images they see are Aperture Web Galleries. This method has worked for me for a while now.
    I know you can save a complete web gallery from Aperture onto a local drive rather than upload to mobile me. Does anyone know a beginners (ie me) guide to include that Aperture web gallery directly into a Dreamweaver site?. It feels like it should be possible but can't find any help.
    thanks in advance.
    Peter B.

    Hello Peter,
    What I do, to link my Aperture galleries to my iWeb pages, is to export the galleries from Aerture to my disk and then to upload them using ftp to a folder at my web hostings service. Then I link the iWeb pages to the gallery using link button or string. I use the free FTP program CyberDuck http://cyberduck.softonic.de/mac to copy the gallery using ftp. If your web hosting service allows ftp transfer, you could do the same. CyberDuck is really a smart little tool, but any program that allows ftp transfer would suffice.
    Regards
    Léonie

  • How to use iPhoto web gallery with iWeb & personal domain name

    So, another question about iWeb 08:
    I've set up my site to use a personal domain name, like www.mypersonaldomain.com. I've configured everything with my DNS settings so that it actually points to my iWeb site, and I'm happy about that.
    However, I've imported a few iPhoto '08 web galleries into my site, but when I browse to them by going to www.mypersonaldomain.com and clicking on the link for my gallery, it goes to a URL that actually shows my .mac account, i.e. gallery.mac.com/sockdaddy/gallery1/photo.jpg
    Is there any way to have the web galleries that I'm using become a more transparent part of my iWeb site, and use my personal domain?

    I've never done this on .Mac but I do use this on my server. I don't see why it wouldn't work.
    In iPhoto select your web gallery and in the "file" menu select "export" and then "Web Page".
    Select your options and click "Export" to the desktop.
    There are now 4 folders and an index.html file.
    Change the name of the index file to whatever you want to call the page e.g WebGallery.html
    Now go to Finder/Go/iDisk/My iDisk/Web/Sites and open your website folder.
    Drag and drop the 4 folders and the html file from your desktop into this.
    Create a link to this from your website in the "link" inspector and choose "external page".
    The URL for the link will be the same as any other page on your site except WebGallery is substituted for the page name.
    If you check the "open link in new window" you won't have to worry about the fact that you don't have a link back to your site from the WebGallery page.

  • I'm having trouble understanding how to upload a web gallery?

    I've been trying to upload a web gallery for weeks, I just can't seem to get it right.
    Does anyone have any tips or advice? I use godaddy as my host.
    Thanks!!

    What have you tried so far and where are you struggling?
    Have you followed the various online tutorials?
    http://tv.adobe.com/watch/learn-lightroom-4/posting-a-web-photo-gallery-to-your-website/
    http://help.adobe.com/en_US/lightroom/using/WSA20E5E2B-1F61-4c59-A3F4-13C1AEF9EF56.html#WS 41FEE1CD-1062-4214-88A0-198706E0BC2B

  • How to delete a web gallery

    I was trying out the Web section of Lightroom and after choosing a template went to add some images just for a trial, and found I added the whole 243 images I had in my Library. Now, I want to delete that effort and explore other templates (this time with just a small collection of images!!!) but I can't figure out how to scrap my first effort. Can anyone help?

    Did you
    b Export
    it or
    b Upload
    it? Either way, all you need to is navigate to the target folder and delete all the gallery files and folders the module created for you.
    Alternatively, you could simply leave them in place and target a different location for your second attampt. That way you can compare the two.

  • Anyone know how to resize .mac web gallery icons for iweb?

    Totally confused.

    I have not been able to, but you can export Flickr slideshows and make them any size you want.
    Check out what I have started :
    http://web.mac.com/ikarl67/Karl,_Laurie_and_ConnorKyhl/Welcome.html

  • How do I get my bridge web gallery to actually work in my photoshop website

    Hi
    Can anyone explain to me in simple english (please - as I'm just a learner) how I get my web gallery (created in bridge) to work with my photoshop website.
    This is what I have done so far:-
    (1) I've created my root folder called 'test'. It has 3 subfolders called:-
    - 'page1' (which is my homepage created as said below)
    - 'page2-gallery' (where I want my bridge web gallery to be)
    - 'page3-other' (for another page link - not important here).
    (2) I have also created a simple website in photoshop (my homepage said above), using the slice tool and have saved it by saveforweb. So I now have my html website file and which works when tested online. One of the slice segments is for my 'gallery' icon on the homepage which, when clicked, should go directly to my bridge web gallery created.
    (3) I have also created a web gallery in bridge and I saved it applying the 'savelocation' as being in page2 of my root folder. But when I checked it online the 'gallery' icon on my homepage does nothing. I then tried saving the gallery to my root folder instead (i.e. not in the page2 of my root folder) but with zero results.
    (4) I've then dragged the root folder's html file (my website's homepage) into dreamweaver, clicked the 'gallery' icon and tried to apply the page2 of my root folder file to the properties inspector's link box (bottom of dreamweaver workspace) - but this wouldn't work either.
    I know that I must be close to solving this riddle and so can anyone help me please.
    J in London, UK

    http://forums.adobe.com/community/photoshop
    http://forums.adobe.com/community/bridge
    http://forums.adobe.com/community/dreamweaver
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • How to Resize Web Gallery Slideshow

    I uploaded some photos of my wifes Xmas party
    http://gallery.mac.com/kjritchie#100068&bgcolor=black
    I elected just to allow viewing, no downloading. My understanding is each photo upload is 800x600. How do I prevent Web Gallery slideshow displaying these photos in full screen mode? 800x600 expanded to fill a 20" monitor looks bad.
    Kelvin

    Kelvin:
    You can't. The software that generates the gallery and slideshow is server side and there are no files to edit to change the size. I suppose you could mount the iDisk, locate the gallery folder in the Web/Sites/_gallery folder and replace the 800 x 600 file with a full sized version. However, each photo has it's own folder and several different image files and they are not the same file name as what you have in the iPhoto library. The file used for the slideshow is named web.jpg. So you'll have to rename each file web.jpg and put it in the folder for that photo.
    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.

  • Can an Adobe Bridge web gallery slideshow file be inserted in Dreamweaver as part of the homepage?

    Hello.  I am designing the homepage of my first website in Adobe Dreamweaver CS6.  And I would like for the page to include a slideshow that automatically plays as soon as a visitor opens the webpage.  I am interested in using Adobe Bridge to create the slideshow using the feature "web gallery."  The tutorials that I've seen describe how to create the web gallery slideshow, then show how it appears when uploaded to the web as an html file through FTP to a server.  It appears as a separate page.  And I notice that the web gallery file is an index file.  I would appreciate knowing how to include the html file as part of the homepage.  Will simply renaming the file from being "index.html" to something like "my_first_slideshow.html" make possible including it in the site structure?  Or will doing so cause it and the files attached to it to be inaccessable when viewed in a browser?  If it can be included in the site, is an <iframe> needed to be in the code for the slideshow to fit into?  Thank you.

    Maybe you best try this question in the dedicated Dreamweaver forum?:
    http://forums.adobe.com/community/dreamweaver

Maybe you are looking for