Web Gallery not updating - wierd problem

Hi
If I export a re-made LR Flash gallery to my web server small changes do not show up when viewed on the web.
I made some caption changes and the old captions still show up. I deleted the original gallery files before uploading, checked the new version was correct and uploaded it. The changes do not show up.
Are there caching issues on servers that I may be unaware of?
I'm using LR 1.3.1, WinXPSP2, viewing in Firefox and IE6.
Thanks
Nick Rains

Did you clear the cache and reload your browser. Sometimes that is what it takes to see an change.
Don
Don Ricklin, MacBook 2Ghz Duo 2 Core running 10.5.1 & Win XP, Pentax *ist D
See LR Links list at http://donricklin.blogspot.com for related sites.

Similar Messages

  • Web gallery not working

    Can't seem to get my web galleries to work. i end up with a white screen. The look fine in preview and in dreamweaver but not when i actually load them to my site. I have an older one web gallery that still works. here is a sample problem page http://anaphoria.com/test/index.html. still on cs5

    What version of iPhoto are you running? If you're still at 7.0 then that's probably the reason. Update to the latest, 7.0.2 and try again.
    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 written 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. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Web Gallery not showing up in iPhoto

    I've set up multiple albums through the web gallery feature and successfully synced them to my .mac account. The problem: one particular gallery shows up on the .mac account but not in iPhoto anymore so there is no way to manage it/add to it/delet it??
    thanks

    Jim:
    Welcome to the Apple Discussions. By not showing up do you mean the gallery is no longer listed in under the Gallery section on the left of the pictures in the gallery are showing a blank window with an "!" in the middle?
    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 written 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. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Web Gallery Not Viewed in  Source List

    I just created a web gallery with no problems and it is viewable on dot mac but now I cannot see it in the source list on the left hand side of the iPhoto page. It does appear momentarily when I do a manual check for changes in the Web Gallery preferences but then it disappears and is not visible. I would like to make some changes but cannot see or access the gallery in iPhoto. Any tips?
    Bill
    I am using iPhoto '08, version 7.1.1

    I've been having the same problem, can't figure out how to fix it. If I go under Preferences/Web Gallery in iPhoto, the gallery is still there in the list, but it will only allow me to pick there "Stop publishing." I can't refresh it back into my iPhoto web gallery list.

  • HTLM Web Gallery not showing pictures

    When I upload from Bridge the web gallery it doesn't show the pictures?  Yet, when I export the HTML web gallery to my hard drive it does.  Any ideas?
    Thanks,

    Jim:
    Welcome to the Apple Discussions. By not showing up do you mean the gallery is no longer listed in under the Gallery section on the left of the pictures in the gallery are showing a blank window with an "!" in the middle?
    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 written 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. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Web form not updating database with stored procedure

    Hello
    i have a problem with the web form updating the database i have a stored procedure which i need to connect to. If i execute the procedure in the SQL it will update the database but when i run the web form i get my catch error "could not update database".
    I have read so much on the net and my code seem ok but i,m just so lost.
    stored procedure
    PROCEDURE [dbo].[UpdateCustomer]
    @ID INT,
    @Firstname VARCHAR(30),
    @Surname VARCHAR(30),
    @Age INT
    AS
    BEGIN
    UPDATE Customer
    SET Firstname = @Firstname,
    Surname = @Surname,
    Age = @Age
    WHERE CustID = @ID
    END
    update code
    try
    SqlCommand command = new SqlCommand();
    command.Connection = conn;
    command.CommandType = CommandType.StoredProcedure;
    command.CommandText = "UpdateCustomer";
    command.Connection.Open();
    SqlParameter param = new SqlParameter();
    param.ParameterName = "@ID";
    param.SqlDbType = SqlDbType.Int;
    param.Direction = ParameterDirection.Input;
    param.Value = txtCustID.Text;
    command.Parameters.Add(param);
    command.Parameters.AddWithValue("@CustID", txtCustID.Text.ToString());
    command.Parameters.AddWithValue("@Firstname", txtFirstname.Text);
    command.Parameters.AddWithValue("@Surname", txtSurname.Text);
    command.Parameters.AddWithValue("@Gender", Gender.Text.ToString());
    command.Parameters.AddWithValue("@Age" ,txtAge.Text.ToString());
    command.Parameters.AddWithValue("@Address1", txtAddress1.Text.ToString());
    command.Parameters.AddWithValue("@Address2", txtAddress2.Text.ToString());
    command.Parameters.AddWithValue("@City", txtCity.Text.ToString());
    command.Parameters.AddWithValue("@Phone", txtPhone.Text.ToString());
    command.Parameters.AddWithValue("@Mobile", txtMobile.Text.ToString());
    command.Parameters.AddWithValue("@Email", txtEmail.Text.ToString());
    command.ExecuteNonQuery();
    lblMessage.Text = "Your Record(s) Have been Updated";
    command.Connection.Close();
    catch
    lblMessage.Text = "Your Record was not updated please try again";
    Thank you for your help

    To expand on Mike's advice.
    Change your catch to:
    catch(Exception ex)
    { // Break point here
    lblMessage.Text = "Your Record was not updated please try again";
    Put a break point in where the comment says.
    Run it.
    Hover over ex or add a quickwatch ( right click it ) and see what the error and inner exception is.
    I see several problems though.
    You have way too many parameters and Age should be int.
    They are objects  - they have a type.
    It'll be a string with your code there.
    Something more like
    command.Parameters.Add("@Age", SqlDbType.Int);
    command.Parameters["@Age"].Value = Convert.ToInt32(txtAge.Text);
    Although that might not cut and paste, it's air code intended to give you the idea.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Web gallery not working for me.

    Hi,
    I've done this a lot on my old PC, but, I can't get it to work on my Mac now. I want to create a web gallery of a couple hundred print bannerheads, all EPS files.
    I've filled out all the meta data. I've filled in a location, a save location.
    But, when I click "save," it tells me that the "save location does not exist."
    So, that didn't work. So, I tried making a PDF instead. There it tells me that "there is insufficient disk space to complete this operation." I've got hundreds of gigabytes of disk space.
    So, Bridge isn't really doing much for me right now.
    Thanks,
    Peter

    I got a similar problem. I'm trying to use the output feature to create a contact sheet. I get the "insufficient disk space" message also. There are only 3 images that are being included in the operation, all around 3 megs. I have over 290 GB available on my hard drive. I went to Preferences/Cache and used the " compact cache" feature, then restarted the software. Still no luck. I get the same message. How about some help, Adobe?!
    Wypie

  • Dynamic Web template not updating

    I am using EW4 and have created a dynamic web template. Some of the pages of the site have all of the updates but some don't. I am not changing any of the layout, text or graphics it is just the links. When I preview the pages  some of them show all
    the links but some show none. 
    I am on a different computer than the one I created the new pages on.
    I have tried to "save all pages"
    I have saved the template pages. 
    I have searched this forum and hit the"recalculate links" button and also "maintain site using hidden meta file" button but it is still not updating. 
    Any ideas?
    Thanks

    My point was that in 99.999999% of the cases (approximately), the problem is user error (or a user-caused problem, such as non-standard workflow), but the first solution people go to is to blame the software and uninstall and re-install it.
    And even if, in the very, very, very rare case that an installation is corrupt (when was the last time you had commercial software become corrupted?), simply uninstalling and reinstalling usually doesn't fix the problem, because corrupted files are
    left on the hard drive during the uninstall process. They remain there and cause the same problems after reinstall that they caused initially. Without doing a thorough clearing of all old files and Registry entries, the new install is plagued by the same problems.
    As Scott has noted, we have had exactly one documented report in this forum in all these years of a reinstall of EW fixing a problem.
    Again--the overwhelming majority of problems are caused by people who do not know how to use the program properly and who should be looking inward for the solution rather than outward.
    A horse walks into a bar. The bartender asks "Why the long face?" "Because I was born into servitude and when I die my hooves will be used to make glue." It was at this point that the bartender realized he would not be getting a tip.

  • Remove album from Web Gallery (not in Iphoto)

    I have a album in my Web Gallery but it's not in my IPhoto. I am trying to remove it from Web Gallery but can not figure out how?

    Welcome to the Apple Discussions. Go into iPhoto's Preferences/Web Gallery. If the gallery is listed then select it and hit the Stop Publishing button.
    If the gallery is not listed then mount your iDisk and go to the iDisk/Sites/Web/_gallery folder. If you have more than one gallery you'll have to look inside each of the gallery folders (they are just numbered and hard identify which is which) to determine which is the gallery you want to delete. When you find it drag it to the trash.
    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.

  • Dotmac published web gallery not showing up.

    So I have now created 2 web galleries through Aperture 2. One shows up the other does not..
    The URL it should be at is http://gallery.mac.com/cbchev68/100191 and it should be called Sushi Hunter.. The other one that is showing up is called Northwind Charters.
    Im guessing there is some software bug here. If I go into Aperture -> Web Gallery -> Sushi Hunter. Then in the main window choose Web Gallery -> Visit Web Gallery, it opens Safari with the above URL and I get an error that the gallery does not exist.. What is even more interesting is that if I go into Aperture preferences, web gallery, it only shows the one gallery that actually shows up on the doc mac servers. I have to assume it is querying the dot mac servers for this data, as there is a 5 second lag or so before this list is populated.
    Its as though Aperture created the web gallery, but then never actually uploaded the images..
    Anyone else seen this?

    Well its definitely a software bug, I just created another new album with a slightly different name and it looks like the photos are now uploading and properly showing up.

  • Web Gallery not showing in Aperture's browser window.

    Hi, I hope someone can help me with this. I create web galleries all the time and they work fine. For some reason when I create a new web gallery, instead of seeing the interface with the web preview (where you get the all the setting for customizing the web gallery and the export/publish buttons), I just see the image thumbnails in the Aperture browser. I even went to web galleries from old projects and is displaying the same way. Has anyone had this problem? Your help will be greatly appreciated. Thanks!

    Chalo Photo wrote:
    Hi, I hope someone can help me with this. I create web galleries all the time and they work fine. For some reason when I create a new web gallery, instead of seeing the interface with the web preview (where you get the all the setting for customizing the web gallery and the export/publish buttons), I just see the image thumbnails in the Aperture browser. I even went to web galleries from old projects and is displaying the same way. Has anyone had this problem? Your help will be greatly appreciated. Thanks!
    hi, chalo
    have you tried hitting the v key? the v key toggles the viewer on and off
    victor

  • Web gallery not working in firefox

    I have made a web gallery using bridge cs4. It works and looks great in internet explorer, however, it is not displaying correclty in Firefox. Can anyone help?
    the site is www.sheyashapkido.com/photos/visit/index.php
    Thank you.

    What do you mean by not displaying properly?
    I checked it on my computer in Firefox and it looks good.

  • Aperture web gallery not displaying properly in browser

    I've created a web gallery, which looks fine in Aperture, but when I view it from my .Mac site, the thumbnails are shifted to the right, rather than being between the title / page selection and the footer.
    This is the same when viewing the gallery on my Mac using Safari, and also Windows machines with Firefox etc.
    Is it a problem with the template?

    I had the same issue. Even recompiled the web page with smaller jpgs but once again the body was off to the right and the header was on the left of the page. I'm using my laptop with a 19" external monitor, when I'm viewing a website I'm using the entire width of the external monitor... maximizing screen size. When I pulled the bottom corner to make the web page smaller, the body of the web gallery dropped below the header and looked just like it should normally. Hope this helps.

  • Uploading photos through web gallery not working.

    People
    When people access my web galleries and use the upload feature and it accepts the uploaded files, but, the photos don't appear in the web gallery or get synched to my iPhoto. However, using the upload feature through email does work!
    Any ideas on that?
    Also, once synched with web galleries on my iPhoto, how come the photos don't automatically appear in the event that the person uploaded the photo to in the fist place? The photos appear in the event under Web Gallery on iPhoto but not the actual event. Does that make sense?
    Cheers
    Al

    Same prob here (EU).
    Looks like uploading through the web interface (while browsing the web gallery) doesn't work.
    E-mailing a picture works a treat, though...
    Tried also using firefox (I'm on a MBP with all the latest software versions) but no luck!
    I've looked also at the contents of my iDisk (it had to be in the loop!) and indeed found that the web gallery is under <.macmember_name>/Web/Sites/gallery/<id> and every picture that's in the gallery has its own folder named after the picture name containing 5 files: *large.jpg, medium.jpg, web.jpg, square.jpg and reflect-medium.jpg* (their meaning is quite obvious...)
    The pictures I sent through the web interface didn't produce results in my iDisk whatsoever, while the one I sent using mail had this new folder-files created in the right way...
    I think this upload feature is seriously flawed...

  • Web Gallery not Opening Webpage Editor?

    when selecting my images for a web gallery and then choosing new web gallery from selection the new folder appears in projects, but doesn't open up the webpage editor like the manual says that it should. i've been working on this for 2 hours and am up against a dead line. i just end up with a web gallery folder full of the correct images, but the browser doesn't change. hope this is enough info to help me.
    thanks,
    ben
    www.benedmonson.com

    i figured out what the deal was. you must be in the proper browser for the webpage editor to launch, the book doesn't say anything about this. i usually use the project management browser, but aperture wants you to be in the standard layout browser?? once again the book not being detailed enough.
    cheers,
    ben

Maybe you are looking for

  • Found a 4S

    First off I found this iPhone 4S I did not steal it, or I would not posting here. On one of my many trips to Asia at a restaurant in Bangkok in the seat cushion I found an iPhone 4s, I am a regular customer and know the owner asked him if anyone aske

  • Boot Camp 4 to Boot Camp 3

    How to move from BootCamp 4 BootCamp 3?

  • Problems after recording in AU CS 5.5

    Hi I'm new to audition and havwe a problem - probably something I'm doing wrong. I am in multi track mode and want to record from my Røde Podcatser. I arm the track I want to record to and place the playhead I press record and do the speak. The probl

  • Error Msg: "The application iTunes can't be opened. -1712"  How can I open the application?

    Error Msg:  "The application iTunes can't be opened.  -1712"  Spinning Wheel from ****!  How can I open this application?

  • Import Captivate .exe files

    By accident someone deleted my original captivate files. I only have my captivate .exe files. I need to update them. Is there any way to open the .exe files in captivate. Judy