iPhoto ftp export - does it exist?

I’m surprised that I still can’t find an ftp export plugin for iPhoto. This would be really handy for maintaining websites but also using the ftp facility with photobox . In fact a photobox export plugin for iPhoto would be even better. If anyone knows of one or a tried and tested solution please leave a comment here!

Find the best places to buy digital cameras on the Internet. You can compare prices before you shop at Pricerunner.com.

7 Responses to “iPhoto ftp export - does it exist?”

  1. Mark Morris Says:

    Hey Rick,

    My new software PhotoUplink will let you FTP directly from the iPhoto export menu, as well as send to ODBC, Excel, PowerPoint and few other things. Its unfinished, but the FTP is working fine.

    Cheers,

    Mark.

  2. Dave Kelly Says:

    Rick

    No fancy GUI here, but this script will do the job if you don’t mind Mac OS X Terminal.
    Photoboxfrequently terminates ftp sessions after a few files, with “service not available”, probably due to server load.

    This script sends one file at a time, logging in and out each time. Not super efficient but at least it doesn’t fail and you can happily leave it running to do your uploads whilst you go down Gloucester Road for a pint of Smiles Best.

    for F in $*
    do
    echo “PROCESSING $F”
    ftp -n ftp.photobox.co.uk

  3. Dave Kelly Says:

    Sorry about the last post, it got chopped because your blog software is not doing an htmlentities on the comment field, lets try again with the code…

    for F in $*
    do
    echo “PROCESSING $F”
    ftp -n ftp.photobox.co.uk \

  4. Dave Kelly Says:

    Third and final attempt…

    for F in $*
    do
    echo “PROCESSING $F”
    ftp -n ftp.photobox.co.uk <<!!
    quote user your-username
    quote pass yours-password
    cd your-album
    bin
    put $F
    quit
    !!
    done

  5. Rick Says:

    Thanks for that Dave - so what does that script actually upload? I can’t see what $* is?

  6. Uriah Says:

    I’m a little late to the party, but thought I’d give you a heads-up about a new iPhoto FTP plug-in. Ubermind has just released a beta version of UberUpload for iPhoto, an iPhoto equivalent of it’s popular Aperture plug-in. It supports uploading to FTP and SFTP servers, has some solid export options including sizing, typing and zipping, and has a very responsive UI.

    You can check it out at www.ubermind.com/beta/uberuploadforiphotobetareg.php.

  7. Uriah Says:

    Hey, just thought I’d follow up and let you know we have closed the betas and released the plug-ins. If you’re interested in checking them out, they can now be found at http://www.ubermind.com/products/.

Leave a Reply