LR web gallery w/ client feedback function?

Probably been asked before, but I can't find it in the search feature, so sorry in advance if this bugs you.
I'm a 20 year user of Photoshop but new to LR. I shot a project for which I am using LR to do my selects and basic adjustments. I need to put my adjusted images in front of my clients with a web gallery that would allow them to make their selects, tag the files with ranking, and leave text comments if they wish. There are about 2000 images in this project.
Photoshop used to have a (barely usable) automated web gallery that allowed for client feedback in text. Is there something like this in LR? Is there a light box function in a web gallery?
Is it built in, our do I have to spend more money to get something that should have been in the product in the first place? (sorry for the mini-rant)
Craig

Victoria,
I would argue that a relatively high percentage of professional photographers would like to have this feature to be able to get feedback from clients. I don't agree that it would be generally considered bloat. Among commercial photographers, photo-journalists, and probably wedding photographers I would argue that the ability to create a web gallery that facilitates feedback from a client, or an editor's desk, has a greater level of value than does having 20 different gallery layouts with various transitions between slides, and cozy color palettes. I do see the value of that variety, but I'd like to see a little more utility also.
Even Photoshop, up to version CS3, had the ability to make a gallery with feedback option. Each image in the gallery had a text box that essentially acted like a Submit button. All comments a viewer made were compiled in an email and the comments were tagged with the image number/name. The gallery was cramped and ugly, but the feature was very useful.
While the TTG Client Response Gallery plug-in looks like it fits the bill, it also requires more of a learning curve than I would like. It also requires making sure my ISP has the correct version of PHP and the correct type of Apache server – certainly more than a basic HTML solution.

Similar Messages

  • Web Gallery and Client Feedback

    Hello,
      I'm using the Web Gallery in Bridge to quickly upload images to my clients and have them choose which ones they want.  The problem I'm having is that they view the image, then have to write the numbers/names down for each, then either write it down again in an email or call me.  It would be much easier to have a solution where the client highlights each image they want,(or write comments/questions) and then presses a button (in the gallery) that would either send me an email or something telling me what they want, thus automating the process.
    Is there a way to do this, or has it already been done?  I'm searching with no luck so far.  Thanks!

    Victoria,
    I would argue that a relatively high percentage of professional photographers would like to have this feature to be able to get feedback from clients. I don't agree that it would be generally considered bloat. Among commercial photographers, photo-journalists, and probably wedding photographers I would argue that the ability to create a web gallery that facilitates feedback from a client, or an editor's desk, has a greater level of value than does having 20 different gallery layouts with various transitions between slides, and cozy color palettes. I do see the value of that variety, but I'd like to see a little more utility also.
    Even Photoshop, up to version CS3, had the ability to make a gallery with feedback option. Each image in the gallery had a text box that essentially acted like a Submit button. All comments a viewer made were compiled in an email and the comments were tagged with the image number/name. The gallery was cramped and ugly, but the feature was very useful.
    While the TTG Client Response Gallery plug-in looks like it fits the bill, it also requires more of a learning curve than I would like. It also requires making sure my ISP has the correct version of PHP and the correct type of Apache server – certainly more than a basic HTML solution.

  • "Quickproof" client feedback web gallery

    I have installed the TTG Selection Gallery template from the turninggate.net which is great for quick client feedback. Clients can click on the proofs they want delivered finished and an e-mail with the corresponding file names are being generated and sent to the photographer. It would be great if Adobe could provide such a template with a really user-friendly configuration method out of the box.
    Secondly, generating proofs for web can take a veeery long time if you have hundreds of proofs to generate - which seems a bit pointless of the output is just web proofs.
    Capture One 3.7 used to have a "QuickProof" mode which applied WB corrections etc. but still managed to cranck out lo-res previews for web etc. in a fraction of the time it would take to generate regular jpgs or tiffs. It would be really great if a similar draft mode could be incorporated into LR as it would save lots of time.

    QuickProof or RSP's FastProofs was, I believe, a way of exporting from the previews. I think that would be valuable as a feature not just for the proofing process (we can already do "draft mode" printing that I think does this), but also for people for whom the previews are their last image backups. We've had our share of requests for rescuing images that were otherwise lost from the previews.

  • How to improve AP2.0 Web Gallery Quality/Functionality for photographers

    Hi,
    I'm a pro photographer.
    I thought AP2.0 plus a (dot)mac account would offer an easy way for my clients to proof images in password protected web galleries and to download images as well. The resulting functionality is poor in my opinion. Is there anything I can do within Aperture or (dot)mac to improve the following problems?
    1) Why is the image quality of the web gallery slide show so poor? No sensible client would accept looking at proof images of this low quality. Even flickr is better.
    2) Why is there only one download file size, i.e. the original size? In other words, the original file is almost always too large for most web client purchases. Why can't the client choose a smaller version. Even flickr is better, offering several download sizes all based on the original upload.
    3) Since the export functionality within Aperture allows for numerous choices of dpi and pixel ratio to export images, why is this same functionality not there for publishing web galleries?
    It seems obvious that photographers would want to publish web galleries with exactly the same control that we can export images to disk or flickr. Even within the Apple Mail application we have choices of quality and pixel dimension for the attachments.
    What am I missing? Please help.

    When you create a Web Gallery in AP2, there is a set up prefernce to let viewers download an Optimized, Actual Size or Optimized and Master Image. (You can only pick one per gallery it seems.)
    However, I think the gallery design is rather clunky, too many design options are left open to the viewer, and not the photgrapher. I prefer the web pages and web journals for customer proofing using the image number. They email me their choices, and then using Aperture, I can order prints based on their selection. Not the simplist way, but I would not want clients downloading my images, anyway, as you suggest. Why would they buy a print if they can just download a jpg themselves?

  • Question about the "Create Web Gallery" function in Bridge

    I created a beautiful Web Gallery using Bridge's built-in function which creates a Photoshop Web Gallery.
    Everything works great except for one thing. When I click the "E-Mail Feedback" button, Apple Mail loads and creates blank e-mail message. This is all good, but for some reason the address line is loading up with data instead of just an e-mail address. I was hoping someone versed in html could tell me what I'm doing.  The source code in ThumbnailFrame.html looks like this:
    function sendFeedback(picName) {
    checkForUnSavedChanges(picName);
    var prefix = "mailto:[email protected]";
    var name = null;
    name = prompt("Enter Your Name:", "Your Name");
    if (name) {
    prefix += "subject=" + escape("Feedback from " + name);
    prefix += "&body=";
    var str = ""
    for (var i in feedback) {
    str += i + " ~~ \n";
    str += (feedback[i].approved == true) ? "Approved ~~ \n" : "";
    str += (feedback[i].other == true) ? "Other ~~ \n" : "";
    str += (feedback[i].comments != "") ? ("\nComments:\n" + feedback[i].comments + " ~~ \n") : "";
    str += "____________________________________________\n\n";
    The address line in the Apple Mail message looks like this:    [email protected]=Feedback from Paul Kirtley&body=
    I want it to look like this:  [email protected]
    By looking at the source code above, can someone tell me how I can make an adjustment to keep "subject=Feedback from Paul Kirtley&body=" out of the address line?
    Thanks!

    There are update and insert methods under the "core" section/
    See this image : http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/images/b20105.gif
    You might want to follow this tutorial to see how it works:
    http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_ejb_30/ejb_30.htm#t4

  • Web gallery with feedback, and the viewer don´t sign in.

    I´v noticed that if I´m making a web gallery in Lightroom 6 and not in the web module, but a collection that I´v synced, then I can share it on the web.
    But if my client wants to comment or mark a photo then the client need to sign in to Adobe.
    Can it be done without a sign in?
    I would be so nice to have feedback on my shared web galleries without the other person have to sign in.

    Create a spare Adobe account for yourself - eg [email protected] - and tell them to use it to login

  • Web Photo Gallery - Contact info not functional?

    When I build a web gallery, using the Flash Gallery (default) in the 'Template Browser', no matter what info I put in the 'Contact info' and 'Web or Mail link' boxes (under Site Info), it does not work.
    Example, under 'Contact info' I put the word 'Contact'....in the 'Web or Mail Link' I put 'mailto: [email protected] (I have not put my actual email here for purposes of this forum, and yes my email address is valid and will both send and receive in Outlook).
    So anyways, when I upload the new web gallery using Dreamweaver CS3, or if I just simply preview it using the 'Preview in Browser' button, well the word 'Contact' appears in the upper right corner of the web page (photo gallery - as it should since that is what I put as word in the 'Contact info' box, but yet when I click on the word 'Contact' it it does nothing. Actually when I click on the word 'Contact' the first time, there is a line that appears below (as if to identify a link). But as I say it does nothing, opens no email window, nada! Except for when I click on the word 'Contact' subsequently, there is no more line underneath as if the link had become inactive???
    I tried using another email address of mine, which is also shorter, but it does not work either....I also tried putting my main homepage address into the ''Web or Mail link' box and still nothing happens...it's as if the link is not functional...?
    Has anybody else experienced this? Am I doing something wrong? Is it maybe just a Flash Gallery bug? (Because I have not tried using other type galleries i.e Blue Sky)

    I have the exact same problem, step by step in Lightroom 2.4. I'm using Vista Ultimate SP2 and Internet Explorer 8.
    Have anyone found a solution to this problem or is it just the two of us?

  • Web Gallery function in CS2

    hello - I am using CS2 and when I make a web gallery from the automate task feature, the gallery comes out great but the controls are too far to the right of the page. Is there anyway to make those controls appear just under the gallery?
    thanks

    Missing DOCTYPE declaration for starters:
    http://www.w3schools.com/tags/tag_doctype.asp
    without that the browsers do not know which set of rules to apply when displaying the page. Correct that then...
    Validate the page here:
    http://validator.w3.org/
    Then come back here and we will look for problems. But very hard to correct anything until you get the foundation right.
    Best of luck,
    Adninjastrator

  • Web gallery still not working.

    The web gallery feature is still non-functional. I used to use it all the time. Suddenly a few days ago I noticed that it simply does not work anymore. I highlight and event, click web gallery, it creates a web gallery in the left sidebar of iphoto. The little progress circle turns for about 15 seconds, then suddenly the web gallery from the sidebar disappears and it as if I never clicked on the web gallery button. All my old we galleries are gone. I tried deleting iphoto prefs and deleting to _gallery folder from my idisk. No luck. When I try publishing a movie in iMovie to the web gallery, everything seems to proceed correctly. It compresses and uploads. The when I click the link provided, I get Apple's version of error 404: no such website.

    Ben:
    See if you can upload a file, any type will do, to the Sites folder on your iDisk via the Finder. I had a similar problem. When I tried uploading a file to the Sites folder or any of its subfolders I would get an error message. I reported it to the iWeb and .Mac feedback sites. It went away for a while and then came back that same day and then went away. Apple did get back to me and checked my account. They reported all was well. If you do get an error you may have a similar to mine but one that's not correcting itself. Report you problems to:
    http://www.apple.com/feedback/mac/tm.html
    http://www.apple.com/feedback/iphoto.html
    Do you Twango?
    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. 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.

  • Photos in Web gallery too dark

    Hello,
    I just updated to the new iLife.
    I tried the new Web Gallery function and the photos are too dark compared to the view in iPhoto.
    Same happens with galleries in iWeb.
    What's wrong?
    JO

    There is a color problem when publishing pictures from iPhoto 06 and 08 (as well as when e-mailing a picture).
    The problem being that the images are published with their original color profile, whatever that is. Further, if profile is missing in the image in iPhoto, the profile will be missing in the output. (BUT iPhoto displays correctly in case there is an EXIF tag specifying sRGB).
    The result is that colors will not be displayed correctly on the WEB (or in e-mail clients), more or less depending on OS platform. This applies both to images and their thumbnails.
    Compare the iPhoto album http://www.tomasjonsson.eu/IPhotoTests/
    with an album with correct colors http://www.tomasjonsson.eu/PictureSite/Albums/Pages/PreAndPostProcessed.html
    In Safari, only IMG_9465 and IMG_5182 will show a difference - since those are the only images without a color profile. However, in other MS-Windows browsers, most images will be displayed incorrectly.
    Note! Most digital cameras produce images without at color profile but with an EXIF tag. In iPhoto:Preferences:Advanced choose Embed ColorSync profile, which will add a profile corresponding the EXIF tag. However, the images that you have already imported will not be fixed.
    Note to Apple: Show EXIF colors space and embedded color profile in Info pane. Add command - ASSIGN profile. And in export dialog - add option Color Space.
    HOW IT SHOULD BE
    Images on the web (and in general also e-mails) should be published in sRGB color space (otherwise they will not be displayed correctly in browsers on the MS-Windows platforms, with the exception of Safari, viewing images with a color profile)
    Images should have a color profile, in particular the sRGB images (otherwise they will not be displayed correctly on the MacOS platforms. Maybe close to correct if you have calibrated your monitor to PC-gamma)
    Actually all images should have a color profile, period. If the image does not have a color profile, it is just a pile of randomly colored pixels - to be interpreted freely by any displaying device, which they do.
    For a demonstration of profiles and WEB see: http://www.gballard.net/psd/golive_pageprofile/embeddedJPEGprofiles.html
    However, DO NOT follow this guys advice of omitting the color profile for WEB publishing because of overhead. The overhead is less than 1% of a high quality image. (I measured 0.5 - 2.5 kByte)
    WORKAROUND
    After exporting from iPhoto - use Photoshop and CONVERT TO PROFILE all images to sRGB color space. Save file with color profile.
    Note, make sure that images without original profile are treated correctly (most often they are sRGB, check the EXIF tag with Preview application)
    Note, apply also conversion to thumbnails.
    Tomas Jonsson, Genicore Embedded Technology AB

  • Web gallery built in Bridge, then linked from DW site, doesn't work

    Hi,
    Using the "web gallery" function in Adobe Bridge CS5, I created an HTML-based web gallery and uploaded it directly from Bridge to here on the web:
    http://www.sws-steel.com/test2/SouthwestSteel/
    I can view this in Safari 5.0.5 on my Mac, but it's a blank white page in Firefox and in Chrome. Even worse, my client gets a blank page in every Windows-based browser.
    If I can get it to work at all, my intent is to add it within a frame on this page:
    http://www.sws-steel.com/temp/photos.html
    Again, it seems to work in Safari (but only after a refresh on an iPad), but doesn't work anywhere else.
    The web gallery function in Bridge would be ideal to use for this gallery, but it just doesn't work and I have no idea how to fix it.  Any help or insights on what's wrong would be greatly appreciated.
    Thanks,
    Kent Bingham

    Missing DOCTYPE declaration for starters:
    http://www.w3schools.com/tags/tag_doctype.asp
    without that the browsers do not know which set of rules to apply when displaying the page. Correct that then...
    Validate the page here:
    http://validator.w3.org/
    Then come back here and we will look for problems. But very hard to correct anything until you get the foundation right.
    Best of luck,
    Adninjastrator

  • Web gallery: Multiple pages depending on browser

    I'm using iPhoto to post a stand alone gallery of 62 pictures for a client to review my photos. I've noticed depending on the web browser, the gallery might divide up my pictures over several pages--which can be confusing with the tiny buttons to move between pages.
    Is there any way to force all pictures in a gallery to show on one page? That would be a much better experience in this case. Also, can you edit the settings of a gallery after it has been posted (Aperture 2.0 does this now)? Thanks! --Jeff
    Example of Web Gallery with 62 photos:
    *Safari 3: All 62 on one page
    *Firefox 2: 62 pictures divided over 2 pages
    *Explorer 6: divided over 3 pages (25/25/12)

    Is there any way to force all pictures in a gallery to show on one page
    No - web galleries are a consume level feature and you have limited control of the display - to make suggestions to Apple re improvements iPhoto menu ==> provide iPhoto feedback
    Also, can you edit the settings of a gallery after it has been posted
    Yes - in iPhoto select the web gallery and click on the gear icon in the toolbar - a setting window comes up that gives you access to the limited setting that you control
    LN

  • Bridge CS5 Renames Files in HTML Web Gallery

    When creating an HTML Web Gallery (using ‘Lightroom’ template), Bridge CS5 renames the thumbs and large images to an arbitrary number.  The caption reads as the original file name, but the actual image has a new name.  This is problematic, as my clients will right-click selected images from my galleries to save and forward for approval, but the file name is not the same as the original.
    As an example: VLNK0321.jpg is renamed as _4856316150.jpg.  (In Preferences/Output, the "Convert multi-byte file names to Full ASCII" is unchecked.)
    Is there any way to fix this little (for me--BIG) problem?

    Solved!
    This works for Windows.  I imagine the Mac solution is similar. Props to William Zauscher for helping find an answer.
    I take no responsibliity for any damage caused to your computer, Photoshop or Bridge...
    In Windows, browse to C:\Program Files\Common Files\Adobe\Bridge CS5 Extensions\Adobe  Output Module\mediagallery\resources\scripts
    In the file named "galleryCreator.jsxinc" replace the lines:
    AOM.AmgGalleryCreator.createUniqueFileName = function(filePath, jpgFile,  createMode)
        var alteredName;
        while (true)
             alteredName = "_";
            for (var i=0; i<10; i++)
                 alteredName += Math.floor(Math.random() * 10);
             alteredName += ".jpg";
            var f = new File(filePath +  alteredName);
            if (!f.exists)
                break;
         return alteredName;
    ...with the following:
    AOM.AmgGalleryCreator.createUniqueFileName = function(filePath, jpgFile, createMode)
                    var alteredName;
                    while (true)
                                    alteredName = "_";
                                    alteredName += jpgFile += ".jpg";
                                    var f = new File(filePath + alteredName);
                                    if (!f.exists)
                                                    break;
                    return alteredName;
    You can cut and paste the above.  Just save a version of the original file somewhere in case of screwups...
    Cheers!
    -Mark

  • Sharing to .Mac Web Gallery

    I am in the process of creating a web site which will contain video. I have been able to insert hyperlinks in the right places but all of the sudden two things happen; iMovie 08 will not upload (share) to .Mac Web Gallery-getting message saying to verify account settings (it is correct) and also to check internet connection-nothing wrong there either. In the iWeb side of it after inserting the hyperlinks the programs takes its time and comes back with a message saying in effect the same as in iMovie.
    Can anyone help with his? Would appreciate it.
    Thank you,
    Damaso

    Have you gotten this to work yet?
    I have the exact same problem.
    I posted feedback at http://www.apple.com/feedback/imovie.html
    "Every time I select Share>.Mac Web Gallery the window comes up showing it is connecting, then a second window comes up saying Already a member? Click Sign In to enter your .Mac member name and password. Since I am already signed in (idisk is functioning fine)I click cancel, sign out, then try to share again. When the second window opens up I click sign in, which I do, and .mac show me signed in, but nothing happens with imovie. If I try to share again, the same windows come up."
    If you have found a solution please share it.

  • Multiple Pages in a Web Gallery?

    Is it possible to have multiple pages in one web gallery?
    I have a batch of photos that I need a client to proof, but I want to separate them into different categories because there's a lot of them to go through and I want it to be as organized as possible.
    So is it possible to have tabs linking to different pages in a gallery, so I could have something like, 'Interiors,' 'Exteriors,' 'Portraits,' etc.?

    You might want to look at the third party TTG Highslide Galley and TTG Pages. The gallery is just that, a web engine for creating galleries but with more options than the LR galleries, and TTG pages will index multiple galleries and generate a home page. That way you could have separate galleries for interir, exterior, etc. It also has client review functionality.

Maybe you are looking for

  • Info Package ABAP Routine

    Hi For FIGL_4 there is both open items and closed items. i want to filter only Open Items Accounting doc no's records for Customers,Vendors,GL account at info package level. There are 3 ODS's in BW side for Open items Customers,Vendors,GL accounts. i

  • Word label template does not line up with avery 5160 8160 paper, Mac Maverick

    Word label template does not line up using avery 5150 or 8160 paper

  • Functional coverage objects.

    Hi, I'm interested in looking at any functional coverage objects that exist for T2; in particular for the CPU core. Scanning the internets I've come to believe that such things must exist in some form somewhere, but I really don't know quite where to

  • SWF plays only half the animation

    i made a simple tween, like a credit roll of images... but only half of it appears and the other half comes out as blank. any body encountered this before? i need help.. thanks in advance

  • GTK control previews missing

    I just installed a GTK theme from gnome-looks.org and now whenever I go to System>Preferences>Appearance the Bug Reporting tool pops up asking me to submit a bug report. Then if I try to customize a theme, I find that all the previews under Controls,