Hi,
I've just installed Zenphoto, and i'm liking it. Very clean, straightforward, minimalist and no feature bloat. Good stuff.
Just wanted to post a few thoughts... firstly, i'm LOVING the fact I can just FTP stuff onto the server and it'll get picked up... good stuff. Personally, i'm exporting from Lightroom, and rsyncing the exported JPEGs to the server's albums folder. This way, if I change any metadata (keywords, caption etc), only the changes are sync'd (eg a few bytes instead of re-uploading an entire 5-6Mb JPEG). I just have to hit the 'refresh metadata' button in ZP admin and i'm set. Very nice.
Secondly, I wasnt too happy with the way watermarking was working... ideally i'd like to see a support for different watermarks at different image sizes, or watermark scaling. In the meantime, i've hacked i.php to change the following:
$allowWatermark = $_GET['s'] != 'thumb';
}
}
becomes
$allowWatermark = $_GET['s'] != 'thumb';
}
if ($_GET['s'] < 1000) {
$allowWatermark = false;
}
}
That is to say, i've basically set zp up to only watermark images if requested over a certain size (in this case 1000). Sure, its ugly and hard coded, but hopefully the core ZP devs could incorporate the idea, if not the implementation. In the meantime, it works for me - my default-sized images are watermark-free, and my full-size ones have a large watermark embedded.
Ok, next up is Maps. I like the idea of Google Maps integration, but I dont have a GPS-enabled camera, or a standalone GPS device. However, I do have a reasonable memory for where the photos were taken, and i'd like to do something based on the Location, City, State/Province and Country fields. What i'm planning is to construct a string based on the four aforementioned fields, and pass that to the Maps API - let Google do the hard work of where in the world we are. I'm going to try to hack this together, and I may or may not publish my findings, depending on basically if it works. I suspect the vast majority of photographers wishing to use ZenPhoto lack GPS hardware, and a good many of them would like to use Google Maps.
Ok, i'm off to have a crack at this Maps lark. Wish me luck!