DigiKam won't show anything [SOLVED, like]

Hi,
Just noticed (I don't use it every day) that digiKam refuses to show existing pics, neither as albums, nor in chronological order, etc. I deleted and (apparently) successfully recreated the data base, but still no show. I can't tell which update is to blame. Any ideas?
Last edited by Llama (2009-10-07 11:24:14)

This was most likely a kioslave issue, I would assume they had to be rebuilt after updating KDE.
The console should have told you that the kioslaves could not be loaded though...

Similar Messages

  • What do I do when my iPod touch freezes and I turn it off and it won't show anything?

    I looked at my Ipod touch and the screen was all white.
    I pushed both of the buttons and held them like I was told to,
    and it went off and won't show anything...
    I don't know what to do to turn it back on....

    - Let the battery fully drain. After charging for at least an hour try:
    iOS: Not responding or does not turn on
    - If not successful then time for an appointment at the genius Bar of an Apple store.

  • I can't delete apps on my iPad does anybody knows how to fix it. Also I can't open any iWork apps ,they open but won't show anything.

    I can't delete apps on my iPad does anybody knows how to fix it. Also I can't open any iWork apps ,they open but won't show anything.

    If the whole iPad freezes then something else is going on. Try this next. Close all apps in the recents tray and restart your iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • I was trying to fix my screen resolution and now it's stuck on auto detect cannot display this video mode. I tried another monitor and it still won't show anything. I'm locked out

    I was trying to fix my screen resolution and now it's stuck on auto detect cannot display this video mode. I tried another monitor and it still won't show anything. I'm locked out

    Reset the SMC and PRAM
    Intel-based Macs: Resetting the System Management Controller (SMC)
    About NVRAM and PRAM
    Next try Safe Mode boot and and then normal boot
    OS X: What is Safe Boot, Safe Mode?

  • Obm-xdg won't show anything in the Openbox menu [SOLVED]

    I put the code:
    <menu execute="obm-xdg" id="obm-xdg" label="xdg"/>
    in ~/.config/openbox/menu.xml just like it says to do universally. It does not show any menu. Every other menu item in the file works. I can edit them and they change. obmenu can see the entry. gnome-menus is installed. obm-xdg works from the command line. Why does this not show anything in the menu?
    Last edited by skottish (2008-11-06 05:27:03)

    Make sure you add the menu id to the root-menu list at the bottom of menu.xml:
    <menu id="root-menu" label="Openbox 3">
    <separator label="Applications" />
    <menu id="obm-xdg" />
    <menu id="apps-accessories-menu"/>
    <menu id="apps-editors-menu"/>
    Last edited by thayer (2008-11-06 05:11:29)

  • My iPod Won't Show Anything But A Brighter Black Screen.

    My iPod Touch 5g had been working just fine for the last 8 months, and even this morning. But, as I was getting into my car, I turned it on and nothing but a brighter black screen showed up. After a few tries of just pressing the on/off button it finally turned on. It worked for a while then, it just wouldn't turn on at all. When I got home, I plugged it in to the charger and it did the same brighter black screen. It's like it turns on in the background but doesn't let the actual screen show. I've plugged it into my computer and the wall, I've held the home and on/off button together but neither are working. It will also play music from my speakers if I press play on the speakers but it won't show me anything but a brighter black screen. Any tips?

    Brighter black?  Black is black.  It has no shades.
    Please tell me that it has NEVER been jailbroke.  If that's the case, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • Discoverer: "CASE WHEN...." in calculations won't show anything in GUI !?!?

    Hi all!
    I have a report in Discoverer Plus (Version 10.1.2.48.18) which contains 2 columns: One with actual spendings and one with budget figures. I want to make a third column which holds actual spendings in percentage of the budget. To do this, I need to make a calculation similar to:
    CASE WHEN SUM(budget) <> 0 THEN SUM(spendings)/SUM(budget) ELSE NULL END
    However, when I apply this calculation to the third column, my report don't return any numbers at all in any column.
    What am I doing wrong? -- Is this a bug, and how should I solve my problem?
    ~Morten

    I can get something out if I do this (applying an aggregate function to it all):
    SUM(CASE WHEN budget <> 0 THEN spendings/budget ELSE NULL END)
    However, this is wrong (Summarizing these percentages doesn't give any meaning).
    SQL lookes something like this:
    SELECT /*+ NOREWRITE */ o100448.ACCOUNT as E100451,(decode((ADD_MONTHS(o100862.DATE1,-4)),null,to_date(null, 'MMDDYYYY'),to_date(to_char(trunc((ADD_MONTHS(o100862.DATE1,-4)),'YYYY'),'YYYY') || '01','YYYYMM'))) as E101004,MAX(o100448.ACCOUNTNUM) as as100473_100451_NEW,CASE WHEN ( SUM(o100862.BUDGET) ) <> 0 THEN ( SUM(o100862.AMOUNT) )/( SUM(o100862.BUDGET) ) ELSE NULL END as C_1,( SUM(o100862.BUDGET) )*o100448.SIGN as C_3,( SUM(o100862.AMOUNT) )*o100448.SIGN as C_2,GROUPING_ID(o100448.ACCOUNT,o100448.SIGN,(decode((ADD_MONTHS(o100862.DATE1,-4)),null,to_date(null, 'MMDDYYYY'),to_date(to_char(trunc((ADD_MONTHS(o100862.DATE1,-4)),'YYYY'),'YYYY') || '01','YYYYMM')))) as GID
    FROM TANGO.TANGO_ACCOUNTS o100448,
    TANGO.TANGO_SUMS o100862
    WHERE ( (o100862.ORG = o100448.ORG AND o100862.ACCOUNTNUM = o100448.SUBACCOUNTNUM))
    AND (o100448.ACCOUNTNUM BETWEEN 30000 AND 79999)
    AND (o100862.DIM = '50')
    AND (o100448.ORG = 'bru')
    GROUP BY GROUPING SETS(( o100448.ACCOUNT,o100448.SIGN,(decode((ADD_MONTHS(o100862.DATE1,-4)),null,to_date(null, 'MMDDYYYY'),to_date(to_char(trunc((ADD_MONTHS(o100862.DATE1,-4)),'YYYY'),'YYYY') || '01','YYYYMM'))) ),( o100448.ACCOUNT,(decode((ADD_MONTHS(o100862.DATE1,-4)),null,to_date(null, 'MMDDYYYY'),to_date(to_char(trunc((ADD_MONTHS(o100862.DATE1,-4)),'YYYY'),'YYYY') || '01','YYYYMM'))) ))
    HAVING (GROUP_ID()=0)
    ORDER BY GID DESC;
    I tried to fire this SQL up in TOAD (or whatever SQL-tool you might have), and columns C_2 and C_3 are empty. Seems like I'm doing something awfully wrong here.....
    Any ideas? (There must be some SQL sharks out there ;-p)
    ~Morten

  • Scopes Preview won't show anything that isn't very bright

    The scopes preview doesn't show an actual preview of the video. I don't know what I am doing wrong. See what I mean:
    http://i6.photobucket.com/albums/y213/jaimefeu/Picture2.png

    jaimefeu wrote:
    It worked perfectly less than a year ago and now it's not working.
    I worked perfectly up less than a year ago and now it's not. That's a long time. What did you do to your computer in that timespan?
    I'm wondering if it's a setting in color or something someone's seen before. Are there any ideas before I start giving out the specs and people start telling me to do things like get a new video card or update my graphics card or other things that probably don't need updating or, in essence, breaking my computer on someone's whim?
    Here's an idea, how's about cluing folks in to what you're doing with what kind of video and some computer hardware/software specs rather than us trying to play Carnac the Magnificent?

  • My 15in. macBook pro display won't turn on. it stays black. i hear the hard drive working but the display won't show anything :( Is there a way 2 reboot my laptop 2 try

    My 15in. Macbook Pro's monitor will not turn on anymore. when i press the power button to turn it on, the hard drive and everything but the monitor turns on. it is just a black screen and it doesnt even look like its trying to turn on . Can anyone tell me how to reset or reboot my laptop? I wanna try to see if that will take care of the issue before i drive an hour to the Apple store and have to pay xxx amount of $$$s for thm to tell me i need a new laptop. Please HELP!!!

    try a reset first. Shut down, unplug for at least 15 seconds then plug and wait 5 seconds and restart.

  • Ipod touch 4th gen won't show anything on the screen after "reset all settings" option??

    okay, here's the situation.
    1. I DID NOT under ANY CIRCUMSTANCE Jailbreak this iPod. in fact,  the iPod was FULLY reformatted, and had a whole new library put on it prior to the malfunction.
    2. the iPod WAS FULLY WORKING BEFORE i selected the "Reset all settings" Option from the Privacy menu
    3. I have tried ALL of the reset steps, including, but not limited to; DFU mode, Force reset, Hard reset, Hard reset, Force-into-itunes, and the like.
    So, knowing that I HAVE NOT jailbroken this iPod, and I have tried EVERYTHING tio fix it, what might the problem be? please, someone help ASAP.
    Brandon.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • TS1463 My ipod won't show anything BUT the red "x"...What do I do?

    I turn on my ipod and after the apple logo comes the red "x" It's a couple months old...NEVER been dropped..What can I do to fix this other than paying out my butt to apple.?

    See here: iPod Displays a Red "X" Icon
    Note that it is often the sign of a hardware failure, usually with the iPod's hard drive.  You can try slapping it again your leg with a bit of force as it may just be that the drive's read/write head is out of place.
    If no luck you'll want to have your iPod serviced or replaced either by Apple or a third party repair company.
    B-rock

  • Won't show picture

    so my friend hit it with a basketball and I'm willing to pay to get it fixed but the screen won't show anything its like it doesnt work but it will still make sound everytime i plug it in or get a notification. Does anyone know what exactly is wrong with it?

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     
    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G and $99 for the other 4Gs. They do not fix yours.
      Apple - iPod Repair price

  • The Apps Won't Show

    Hi, I'm Julia. I have a Blackberry Curve 8520. Somehow, when I press the button that is supposed to bring me to my apps, it won't show anything. It just stays on my home screen. Does anyone know a way on how to get them to show, because I have important files in my notes app. Thanks!

    Hey jdawg943,
    Welcome to the forums.
    Have you tried doing a battery pull? If a battery pull does not correct the issues then you may have a software issues. 
    In this is the case then we can try to reload the software on the BlackBerry smartphone to make sure it is running the latest version and there are no issues with the OS.
    Here is how to backup your BlackBerry smartphone http://bbry.lv/oPVWXc
    Once you have backed up your BlackBerry smartphone please follow the link below to complete a clean reload of the BlackBerry smartphone software.
    Link: http://www.blackberry.com/btsc/KB03621
    Once completed test it and proceed with selective restore, here is how to restore http://bbry.lv/qgQxLo
    Let us know how you make out and if the battery pull did the trick. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Xcode Build and Run window doesn't show anything i done in .xib even a Label?

    I am new to xcode ,try to learn programing ,i try to build a simple Mac program ,i drag a label icon to .xib user interface and SAVE then RUN ,in the window it won't show anything ?  anyone can help ? thanks

    The NewTry window looks like the window that opened when you ran the app not the window in the builder, right?
    You need to open thre app window in the builder. To do this you need to select the app cube  window icon in the column to the left of the builder window.
    Select the solid blue cube   window icon that says NewTry App Delegate like this
    (note the name of the cube  window icon will reflect the app name which is why the above says Test App App Delegate)
    Once you have that window open in the builder then you can drag ui elements into it and they will appear when you build and run the app.
    Of course getting them to do something is another issue entirely!
    Message was edited by: Frank Caggiano - its not the blue cube but the window icon above it.

  • IPod won't show album art

    My nano won't show album art like it's suppossed to. I tried the whole, "check and uncheck display albums artwork on your iPod" under preferences. Then I get an error message as follows: The iPod cannot be updated. An unknown error occured (-50). What should I do?

    In itunes, navigate to the tracks, select them, then click on Advanced -----> Get album artwork.
    See if it works.

Maybe you are looking for

  • IPod 20GB is no longer playing.  Can you help?

    My iPod 20GB has been working fine for months, but now it wont play anything. It just goes from song to song without playing.

  • How to test if a day string is valid

    A day in given month of a given year is valid if it meets the following conditions: 1)dayString >0 2)dayString < days in a given month of a given year 3)dayString.matches("^[0-9]{1,2}$") i.e., the day must be a positive, number like, and must not be

  • Firefox frequently hangs when loading websites with Flash video.

    Firefox frequently completely freezes when viewing Flash video and the only way to release it is to manually kill the plugin-container process. This have been verified with several Firefox versions, upto and including 3.6.10 and upto the lastest Flas

  • Error message KD625 during WBS settlement.

    Hello Experts, I am trying to settle WBS element to AUC with investment measure in the current year, which has a balance from 2006 and getting the Error Message KD625. Kindly suggest me the solution. I found the below OSS notes but not sure how relev

  • Width if not assigned in IE

    I've been trying to build some dynamic sub-menus for this template driven website I manage, but I'm having problems in IE getting the width of a span tag. The width is not assigned in CSS or inline because I want it to be the same size as the text th