Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

Use Case:
Photos are organised in a folder structure by date (by software lightroom/picasa)
Want to run a local webserver to host a web gallery from (already know how to run lamp etc)

I want to be able to attach metadata to the photos (probably through a database not residing in the photos folder) such that they can be tagged/categoried/albumed without affecting the original photos
I want to be able to assign permissions to different albums to set users
I want the software to watch the photo source folder for changes so that new photos are indexed ready for applying metadata and albums.
I'd like the software to handle the rendering of numerous file types (photo formats) as well as video formatts

I am language agnostic so php/python heck even c#, just want software that forfills the requirements. The main reason I am asking this question here as I am unsure what this software would even be called so google searching is quite difficult!

Thanks for reading.

share|improve this question

closed as too localized by John Conde Mar 3 '12 at 14:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

I did this for a while using MIG - My Image Gallery -- i think it will do what you want, it reads from the filesystem, so dropping new images in there will display them immediately. Exif data is supported.

share|improve this answer
Interesting solution however it doesnt provide a solid way of securing the photos. I am also not a huge fan on having to store thumbnails next to the photos. Since its is only php based (no database interaction) it also doesnt support metaalbum/collections/tags etc. But thank you for the suggestion – user5952 Mar 9 '11 at 8:56