|
My Tags view is empty. No matter which tag I select, it does not show any image. If I search for the tag manually though, then it is shown. Is there a way to debug this? Current version from SVN. Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
On 06.08.2010 14:11, Simon A. Eugster wrote:
> > My Tags view is empty. No matter which tag I select, it does not show > any image. If I search for the tag manually though, then it is shown. > > Is there a way to debug this? > > Current version from SVN. > > Simon Ideas, anyone? Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
In reply to this post by Simon A. Eugster
> My Tags view is empty. No matter which tag I select, it does not show any > image. If I search for the tag manually though, then it is shown. > > Is there a way to debug this? > > Current version from SVN. Probably, your tags ioslave isnt working properly. Maybe an old version still installed. ~/.xession-errors can give you more info. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
On 01.09.2010 19:20, Marcel Wiesweg wrote:
> >> My Tags view is empty. No matter which tag I select, it does not show any >> image. If I search for the tag manually though, then it is shown. >> >> Is there a way to debug this? >> >> Current version from SVN. > > Probably, your tags ioslave isnt working properly. Maybe an old version still > installed. ~/.xession-errors can give you more info. There's indeed an error message when I click a tag in digikam: $ tail .xsession-errors QFSFileEngine::open: No file name specified kio_digikamtags(5131)/digikam (core): Couldn't open file: "" kio_digikamtags(5131)/digikam (core): No DB action defined for "listTagRecursive" ! Implementation missing for this database type. kio_digikamtags(5131)/digikam (core): Attempt to execute null action kio_digikamtags(5131)/digikam (core): No DB action defined for "listTagRecursive" ! Implementation missing for this database type. kio_digikamtags(5131)/digikam (core): Attempt to execute null action How can I check for an old installation? Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
> kio_digikamtags(5131)/digikam (core): No DB action defined for > "listTagRecursive" ! Implementation missing for this database type. > kio_digikamtags(5131)/digikam (core): Attempt to execute null action The file /usr/share/kde4/apps/digikam/database/dbconfig.xml is the problem. It is installed by digikam and cannot be found / read by the ioslave (and probably not by digikam as well) _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
On 01.09.2010 21:26, Marcel Wiesweg wrote:
> >> kio_digikamtags(5131)/digikam (core): No DB action defined for >> "listTagRecursive" ! Implementation missing for this database type. >> kio_digikamtags(5131)/digikam (core): Attempt to execute null action > > The file /usr/share/kde4/apps/digikam/database/dbconfig.xml is the problem. It > is installed by digikam and cannot be found / read by the ioslave (and > probably not by digikam as well) /usr/share/kde4/apps/digikam/database does not exist here. When should it have been created? How can I fix this? Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
> >> kio_digikamtags(5131)/digikam (core): No DB action defined for > >> "listTagRecursive" ! Implementation missing for this database type. > >> kio_digikamtags(5131)/digikam (core): Attempt to execute null action > > > > The file /usr/share/kde4/apps/digikam/database/dbconfig.xml is the > > problem. It is installed by digikam and cannot be found / read by the > > ioslave (and probably not by digikam as well) > > /usr/share/kde4/apps/digikam/database does not exist here. When should it > have been created? How can I fix this? It is installed with the rest of digikam. If you installed a package, the package is broken. If you compiled yourself, you must check at installation where this file is copied to, why it is not found etc. _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
On 03.09.2010 12:51, Marcel Wiesweg wrote:
>>>> kio_digikamtags(5131)/digikam (core): No DB action defined for >>>> "listTagRecursive" ! Implementation missing for this database type. >>>> kio_digikamtags(5131)/digikam (core): Attempt to execute null action >>> >>> The file /usr/share/kde4/apps/digikam/database/dbconfig.xml is the >>> problem. It is installed by digikam and cannot be found / read by the >>> ioslave (and probably not by digikam as well) >> >> /usr/share/kde4/apps/digikam/database does not exist here. When should it >> have been created? How can I fix this? > > It is installed with the rest of digikam. If you installed a package, the > package is broken. If you compiled yourself, you must check at installation > where this file is copied to, why it is not found etc. Okay, it is at /usr/local instead of /usr. Shouldn't the start script from http://www.digikam.org/drupal/download/SvnAlongStable take care of this? Working now! (Created a symbolic link -- is this a good idea?) Thank you! Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
> > Okay, it is at /usr/local instead of /usr. > Shouldn't the start script from > http://www.digikam.org/drupal/download/SvnAlongStable > take care of this? Yes, probably. We use a standard KDE macro to install this file, and the KStandardDirs to locate it. So yes, things like this should be taken care for by such scripts. > > Working now! (Created a symbolic link -- is this a good idea?) Thank you! I always fully install digikam to avoid such problem completely, so I dont have experience with other installations schemes. I remember $KDEDIRS and other environment variables from long ago, but then decided not to fight with this any longer ;-) Marcel _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
|
On 04.09.2010 12:29, Marcel Wiesweg wrote:
> >> >> Okay, it is at /usr/local instead of /usr. >> Shouldn't the start script from >> http://www.digikam.org/drupal/download/SvnAlongStable >> take care of this? > > Yes, probably. We use a standard KDE macro to install this file, and the > KStandardDirs to locate it. So yes, things like this should be taken care for > by such scripts. > >> >> Working now! (Created a symbolic link -- is this a good idea?) Thank you! > > I always fully install digikam to avoid such problem completely, so I dont > have experience with other installations schemes. > I remember $KDEDIRS and other environment variables from long ago, but then > decided not to fight with this any longer ;-) I think I'm gonna install digikam to /usr as well. Haven't been using the package version anymore for ages :) Simon _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
| Free forum by Nabble | Edit this page |
