
PHPDigikam
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
PHPDigikam is a PHP5 script to let others browse your digikam archived photos by album or tag.
I wrote this because digikam's export plugin lacked one important feature: to show all the tags associated with an image and let you browse all photos that have the tag 'People' set for example.
This script has to be run on an apache webserver and will query digikam's SQLite database directly, thumbnails are generated/updated via a bash script.
Features:
- Only export certain albums
- Tags that don't belong to any images
in the allowed albums will not be
shown
- Browse photos by tag or album
- Easily translatable
(German and English provided)
- Setup mode for configuration
See the README file for installation instructions.
bobuse
14 years ago
I've no time for the moment to test it, but I cheer you to progress your dev :-)
Report
yemu
14 years ago
Database connection successfully established :-)
Fatal error: Call to a member function fetchAll() on a non-object in /var/www/localhost/htdocs/digikam/inc/setup_forms.inc.php on line 187
Report
thorbenk
14 years ago
$db->query('SELECT url, id FROM Albums')->fetchAll();
which should work as you said the database connection has been established.
What version of digikam are you using? My version here is 0.8.1, maybe the table layout is different...
If you've got time, you could use http://sqlitebrowser.sourceforge.net/ (use the binary, compiling didn't work for me) and look at digikam's database yourself...
Hmm, hope we can resolve this.
Thorben
Report
yemu
14 years ago
Report
thorbenk
14 years ago
Are you using PHP5? Which distribution? I thought most distributions would compile in PDO...
Thorben
Report
thorbenk
14 years ago
Are you using PHP5? Which distribution? I thought most distributions would compile in PDO...
Thorben
Report