humm, you guys should have made this change more obvious on the 1.4.2, cause now i've got a pretty large gallery filled with unpublished images (that for days now i thought were live on the site) and now when i want to publish them, its not so easy, especially with the removal of the "Admin Overview page > Utilities > Publish content", the only way it seems is to go through every album and publish it in batches, that's gonna take forever...
Something has gone awry with the upgrade on my system. Albums that are a year old, that I know were fully published at the time of upload, now contain unpublished images. I don't know how that happened. The albums themselves are all published.
I've got over 100 albums. Is there an SQL command that could publish every image for me?
Thanks acrylian, that worked for me.
For the sake of any others who have this problem, this is what I did this in the mysql command line client:
USE zenphoto_db;
UPDATE zp_images set show=1 WHERE show=0;
The only trouble I had is that 'show' is a reserved word. I guessed as much, but couldn't get regular quotes to work... it required the backticks.