KDE logout/shutdown dialog does not appear

Hello, I am using KDE and the right click or the KMenu dialog for logout/shutdown/restart does not appear.
Also i have a startup script which doesn't load at all times. I have found sometimes the dialog appears for some sessions (randomly), and in those sessions the autostart apps actually work. So I guess they are somewhat related.
Please suggest me what steps should I take.

The fact that it sometimes works doesn't make it easier to find  a solution.
However, I did search a bit, and found his -perhaps outdated-site
http://techbase.kde.org/KDE_System_Admi … on/Startup
it states
The KDE session manager also restores one of the previous sessions
I looked at my own ~/.kde4/share/config/ksmserverrc:
[General]
confirmLogout=false
excludeApps=
loginMode=restorePreviousLogout
offerShutdown=true
screenCount=1
shutdownType=0
[LegacySession: saved at previous logout]
count=0
[Session: saved at previous logout]
clientId1=1041726368000137260930800000004110000
clientId2=1041726368000137106177600000004810009
clientId3=1041726368000137303911200000004300005
count=3
discardCommand1[$e]=rm,$HOME/.kde4/share/config/session/kwin_1041726368000137260930800000004110000_1373044182_993937
discardCommand2[$e]=\\0
discardCommand3[$e]=
program1=kwin
program2=/usr/bin/nepomukcontroller
program3=pulseaudio
restartCommand1=kwin,-session,1041726368000137260930800000004110000_1373044182_993937
restartCommand2=/usr/bin/nepomukcontroller,-session,1041726368000137106177600000004810009_1373044182_991176
restartCommand3=
restartStyleHint1=0
restartStyleHint2=0
restartStyleHint3=0
userId1=henk
userId2=henk
userId3=henk
wasWm1=true
wasWm2=false
wasWm3=false
furthermore the site states:
For example, if ksmserverrc contains:
restartCommand1=kwin,-session,110a0a0002000106760689100000019360000_1083342151_608625
restartCommand2=konsole,-session,10378ac070000108334204700000277690000_1083342151_552722
Then the application specific state information for kwin and konsole can be found in
$KDEHOME/share/config/session/kwin_110a0a0002000106760689100000019360000_1083342151_608625
and
$KDEHOME/share/config/session/konsole_10378ac070000108334204700000277690000_1083342151_552722
respectively.
Perhaps you should have a look into it.

Similar Messages

  • I have just updated my MBP to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    I have just updated my MBP 17 / retina display to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    The button response has changed. 
    Short press : sleep
    Medium press (2-3 sec) : restart, shutdown, sleep dialog
    Long press : force shutdown. (Same as before)

  • SPOOL DIALOG DOES NOT APPEAR WHEN NO_DIALOG = SPACE

    The control parameters that allow the spool dialog popup to appear work when executing directly from MB90, but when executing from MIGO, the spool dialog popup does not appear.  The print output is occurring without giving user option to change spool dialog entries.  The desired outcome is to have the spool dialog popup appear when executing IM transactions and our output type is WEE4 to allow user input prior to printing. 
    See below for code:
    FORM CALL_GR_SMARTFORM.
      TABLES: LTBP,
              QAMB.
      DATA:  LV_LTBP TYPE LTBP,
             LV_SFORM_NAME TYPE SFORM,
             LV_FM_NAME   TYPE RS38L_FNAM,
             LV_MESS      TYPE STRING,
             LT_OUTPUT_OPTIONS TYPE SSFCOMPOP OCCURS 0 WITH HEADER LINE,
             LT_COPIES    LIKE MSEG-MENGE,
             LT_CONTROL_PARAMETERS TYPE SSFCTRLOP OCCURS 0 WITH HEADER LINE,
             LV_MATERIAL_TEXT TYPE MAKT,
             L_CX_ROOT    TYPE  REF TO CX_ROOT.
         SELECT SINGLE * FROM MAKT INTO LV_MATERIAL_TEXT
                WHERE MATNR = MSEG-MATNR AND
                      SPRAS = 'EN'.
      IF mseg-werks = '0050' AND NAST-KSCHL = 'WEE2'.
        LV_SFORM_NAME = 'ZZEBRA_GRSERVLBL'.
      ELSEIF mseg-werks = '0050' AND NAST-KSCHL = 'WEE4'.
        LV_SFORM_NAME = TNAPR-SFORM.
        LT_COPIES = MSEG-MENGE.
      ELSEIF MKPF-VGART = 'WQ' AND MSEG-BWART = '321'.
        IF MSEG-ZEILE <> '0001'.
          RETURN.
        ENDIF.
        SELECT SINGLE * FROM QAMB
              WHERE MBLNR = MSEG-MBLNR AND
                    MJAHR = MSEG-MJAHR.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP INTO LV_LTBP
                WHERE QPLOS = QAMB-PRUEFLOS AND
                      MATNR = MSEG-MATNR.
        ENDIF.
        IF sy-subrc = 0.
          SELECT SINGLE * FROM LTBP
                WHERE TBNUM = LV_LTBP-TBNUM AND
                      MATNR = LV_LTBP-MATNR AND
                      MBPOS = LV_LTBP-MBPOS AND
                      ELIKZ = ''            AND
                      BESTQ = ''.
        ENDIF.
        LV_SFORM_NAME = TNAPR-SFORM.
      ELSEIF mseg-bestq = 'Q'.
        SELECT SINGLE * FROM LTBP
              WHERE LGNUM = MSEG-LGNUM AND
                    TBNUM = MSEG-TBNUM AND
                    TBPOS = MSEG-TBPOS.
          LV_SFORM_NAME = 'ZZEBRA_GRQMLABEL'.
      ELSE.
        LV_SFORM_NAME = TNAPR-SFORM.
      ENDIF.
      LT_OUTPUT_OPTIONS-TDIMMED   = NAST-DIMME.
      LT_OUTPUT_OPTIONS-TDDELETE  = NAST-DELET.
      LT_OUTPUT_OPTIONS-TDDEST    = NAST-LDEST.
      LT_OUTPUT_OPTIONS-TDDATASET = NAST-DSNAM.
      LT_OUTPUT_OPTIONS-TDSUFFIX1 = NAST-DSUF1.
      LT_OUTPUT_OPTIONS-TDSUFFIX2 = NAST-DSUF2.
      LT_OUTPUT_OPTIONS-TDARMOD   = NAST-TDARMOD.
      LT_OUTPUT_OPTIONS-TDCOVER   = NAST-TDOCOVER.
    IF sy-tcode = 'MB90'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ELSE.
      LT_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    ENDIF.
    IF NAST-KSCHL = 'WEE4'.
      LT_OUTPUT_OPTIONS-TDCOPIES  = LT_COPIES.
      LT_OUTPUT_OPTIONS-TDGROUP  = 'X'.
      LT_CONTROL_PARAMETERS-NO_DIALOG = SPACE.
    ENDIF.
      APPEND LT_CONTROL_PARAMETERS.
      APPEND LT_OUTPUT_OPTIONS.
    **To get Function Module Name
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = LV_SFORM_NAME
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
         fm_name                  = LV_FM_NAME
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       CATCH CX_FP_API INTO L_CX_ROOT.
         LV_MESS = L_CX_ROOT->GET_TEXT( ).
         MESSAGE LV_MESS TYPE 'E'.
    ENDIF.
    To call SMARTFORM Form
      CALL FUNCTION LV_FM_NAME
       EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = LT_CONTROL_PARAMETERS
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
         OUTPUT_OPTIONS             = LT_OUTPUT_OPTIONS
         USER_SETTINGS              = SPACE
         po_item                    = ekpo
         mat_text                   = LV_MATERIAL_TEXT
         mat_doc_item               = mseg
         mat_doc_post               = mkpf
         QM_INSP_LOT                = ltbp
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    ENDFORM.                    " call_rm07etikett_smartfo

    Hi azman1437.
    I see that since an update you haven't been able to scan with your Deskjet 3050A. I try to help with this.
    I would suggest by starting with an uinstall/install of your software. Something may have changed how the software is loading on the computer when you attempt to scan.
    The other option, is looking for the HPscan application.
    Where this is located depends on your computers operating system. To help with that would need to know the OS of the computer.
    I hope this helps, thanks for your post.
    I worked on behalf of HP.

  • PC Suite - Sync - Settings Dialog Does not Appear

    Installed PC Suite. Selected Synchronise and the Synchronise dialog appears. The Settings dialog does not automatically appear as stated in Help. Pressing the "Settings" button does not cause the Settings dialog to appear. Pressing the Synchronise button also does nothing.
    Have tried to uninstall and re-install PC Suite, have tried 6.7 and the latest 6.8 on the the website.
    The very first time I tried this, the settings dialog did appear, when I started clicking through the settings to choose what I wanted, the dialog froze and eventually the application had to be killed using Task Manager.
    Version info:
    Windows XP Pro Ver 2002
    Service Pack 2
    PC Suite Version - 6.7 (also tried 6.8)
    Connection method - Bluetooth

    Hi there,
    I have exactly the same problem - i have installed - un-installed - re-installed and used the nokia registry cleaner tool - still with same problems ovccuring. The strange thing is, i have used this device (Nokia 6230i) on my pc before. (Fijitsu Siemens Laptop).
    I have tried to get working using cable and bluetooth device - they all function as they should every other way -but will not allow me to click the settings button and sync - the button is enabled, but just does no action when clicked.
    I have done as you requested miksu - and it succesfully connects - what now?
    I have:
    XP Pro Service Pack 2
    Nokia PC Suite 6.80.22
    Office 2003
    Im desperate to get this working again - missing too many appointments!!!
    Many thanks,
    Neil

  • Why my dialog does not appear?

    When i using IE8 open an pdf on web under Win7, Adobe Reader has been loaded and my plugin loaded either.
    But When i click "about" button of my plugin there is no dialog popup.
    The dialog is created without any control,so it couldn't be the control matter.
    The dialog was created with MFC technology.
    Anyone can help me?
    thanks.

    I have a plug-in that opens an MFC dialog when I right-click on an annotation in a browser, and it works with Acrobat 7, 8, and 9 in FireFox, IE, and Chrome on XP and Windows 7.  So, it is possible to open an MFC dialog in a browser.
    However, when I was first testing my plug-in with IE 8 on Windows 7, the dialog would not open.  (This didn't happen with FireFox, and I haven't tested Chrome on Windows 7).   It turned out to be a Windows 7 security issue that only seems to affect IE8.
    You can verify this by logging into Windows 7 as "Administrator" (i.e., not as yourself, even if you have Admin permissions.)  The dialog should open.  However, that is obviously not a good solution because most users will not log in as "Administrator," which is a user account that is not enabled by default.
    Log back in as yourself and add your website as a "Trusted site" -- Tools>>Internet Options>>Security.  Select "Trusted sites," click the "Add" button, and add your site.  That worked for me.
    Bill

  • CS5: Manual layer break dialog does not appear

    Hi
    If I would like to create a dual layer disc, the following message appears: "the disc requires a layer break" in CS5.
    I set the layer break from "automatical" to "manual" and tried again but the message appears again and no dialog will be opened as Adobe stated in their help: "Manual: Opens the Set Layer Transition dialog box...".
    I read a lot of people having problems with layer breaks in Encore but it seemed that nobody has solution.
    Why does the layer transition dialog not pop up? Does anybody has the same problems with dialog not showing up?
    My setup:
    - Movie ProRes 442 HQ, 112min, 20 chapters (no error on transcoding)
    - Main menu with "play" and "scene" button, animated video as intro (ProRes 442HQ)
    - 2 scene menues with 10 video buttons each
    - there is no error on project checking
    - DVD+R DL, no problmes so far to write dual layer dvd's
    - 8.14GB will be used on disc
    Thans for any help, I am really frustrated.
    Cheers,
    gorbi

    I think I found a “cheat” solution.  I figured out I needed to force the auto break (only option available in CS6 on a Mac), was to push the auto break down to some other place in the movie.  I created 5 minutes of dummy black video, compressed it to the same specs as other videos, added that to the beginning of the offending timeline, cut it to 1 minute, created a second chapter marker right at the heads of the movie, linked the menu button to that chapter marker, and voila!, where ever Encore put the autobreak now doesn’t affect the movie play. It starts up right after the menu button is selected, just as it should.  For anyone else having this problem, try this solution... seems to work well.  I think that’s a good “thinking  outside the box” solution.

  • KDE open file dialog does not honor the global double click setting

    I have checked both in system settings and in the file
    $HOME/.kde/share/config/kdeglobals
    to make sure the singleclick is set to false. Still in the open/save dialog the files are selected and opened in a single click.
    This bug is not seen in chakra linux (which now has kde 4.8.2).
    Anyone can confirm this?
    Last edited by tzhang37 (2012-04-20 16:38:37)

    It works for me.

  • Save as Dialog does not appear after export report is selected

    Post Author: tparah
    CA Forum: Exporting
    We have recently upgraded from Crystal Enterprise 9 to 10.  We have one user (so far) that cannot export reports to excel or any other format.  Other users are not having the same problem.  The usual save dialog just disappears and the IE window closes returning the user to the report history page.
    The user is using the latest IE6, office 2003 and Windows XP with all current patches.  We have check all IE setting and nothing is out of the norm.
    Any help would be greatly appreciated.

    The PDFMaker function of Acrobat 9 is not compatible with Office 2010: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html
    You can use Acrobat 9 to create PDF files though by choosing File > Print within Excel and selecting the Adobe PDF printer. 
    Wish I had better news for you!
    Please let us know if you have any questions.
    -David

  • Printer dialog box does not appear in Photoshop CS.5

    I use Photoshop CS.5.1 with a Macbook 2013 using version 10.9.5. The printer works perfectly with all other applications but in Photoshop no printer dialog box comes up and the print job does not appear in the printers queue. Anyone the same issues?

    First, try nuking (deleting them and letting the application create new ones) your Photoshop preferences:
    To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here.
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • The "Logout" button does not appear my Sakai sessions. I have to mouse over the blank area to find the link to logout. The Logout button does appear in Safari. Firefox version 10.0. Mac OS 10.7.2

    The "Logout" button does not appear my Sakai sessions. I have to mouse over the blank area to find the link to logout. The Logout button does appear in Safari. Firefox version 10.0. Mac OS 10.7.2

    To make sure that all required media is in the library contain the project you need to "Consolidate media"  see:  http://help.apple.com/imovie/mac/10.0/#mov882dee351
    You can then copy the library to your laptop with the Finder and open it with the same version of iMovie.  The last phrase is important since Apple has made changes in the project format several times even between minor updates of iMovie 10.  Earlier versions may not be able to read the library and later versions (not possible in this case) may cause the project to be updated so that it is no longer readable by the desktop version.   iMovie on the laptop will not at first find the copied library - you will have either to double click on it or File - Open library - Other and navigate to its location.
    Geoff.

  • HDR Pro Merge dialog box does not appear. The layer disappear. What are the solutions?

    HDR Pro Merge dialog box does not appear.
    The layer disappear. What are the solutions?

    Hi Noel,
    Actually, I just checked my scratch disk available space and it says ot is over 1.7 TB!!  I am only using the C drive as my scratch drive, as that is my only drive.  Anyway, I appreciate your help! Still will not function properly.  Maybe I should try reinstalling Photoshop.
    Cheers,
    Russ

  • Image src dialog box does not appear

    Hello,
    For some reason when I click the insert image button in
    dreamweaver cs3, the image src dialog box does not appear any more.
    It now just inserts <img src="" />. It used to allow me to
    choose an image, anyone know how to fix this? Thanks,
    Jasontor

    No idea....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jasontor" <[email protected]> wrote in
    message
    news:go785j$ja0$[email protected]..
    > Anyone?

  • Ipod does not appear in itunes after windows scan and fix

    Two days ago, I restored my Ipod classic using Itunes 9.2.0.61. After restoration my Ipod started freezing Itunes and Vista. At a point, I saw a blue screen and my computer forced a shutdown. When it rebooted, Vista kept asking to automatically "scan and fix" problems on my Ipod. Thinking that would solve the "freeze" problem, I stupidly went ahead to have Vista scan and fix my Ipod. Now the freeze problem is gone, but my Ipod does not appear in Itunes. I have tried the five Rs from Apple, but that has not helped. Anyone with a solution?

    1. Update iTunes to the latest version. Plug in your iPod. If iTunes still can't recognize it, then in iTunes in the top left corner click help> run diagnostics. On the box that comes up, check the last two things. Click next and it should identify your iPod.
    2. Click on your windows start menu. Type in "services". Click on it and when it pops up, on the bottom of it click on "standard". Now Scroll down to find "Apple Mobile Device" Right click it when you see it and click on "Start". When it has started, close iTunes and replug in your iPod and it should show up.
    3. Check the USB cable
    4. Verify that Apple Mobile Device Support is installed
    5. Restart the Apple Mobile Device Service and verify that the Apple Mobile Device USB Driver is installed.
    6. If you just want to add some photos, songs and movies from computer to your devices, you can use an iTunes alternative to do the job.
    7. Check for third-party software conflicts.

  • Save PDF File As dialog box not appearing

    I am running Acrobat 8 Pro on Windows Server 2008. I'm having a problem with the Adobe PDF printer. When I attempt to print a document to this printer, the "Save PDF File As" dialog box does not appear. The dialog box does open, but it is either hidden behind the running application or is minimized. I have to click the icon on the taskbar to bring the window to focus. This problem only occurs the first time I attempt to print after logging onto the computer. On subsequent print jobs the dialog box shows up fine.

    Is there a registry setting or anything that I can set to get rid of the 'Save Scanned File As' box.
    No.

  • Forms 10.1.2.0.2: Web Form does not appear at Runtime with CALL_FORM

    Hello there,
    We have a number of forms we're executing as web forms using Oracle JInitiator 1.3.1.22. We have one form in particular that, when a button is pressed, is supposed to call another form via the CALL_FORM built-in.
    We are passing a parameter list to the new form, and executing the CALL_FORM built-in with these Setting Parameters:
    CALL_FORM( formmodule_name => '<OUR_FORM_NAME>',
               display         => NO_HIDE,
               switch_menu     => NO_REPLACE,
               query_mode      => NO_QUERY_ONLY );When we run the starting form as a web form (via JInitiator 1.3.1.22), and press the button to call the other form, all buttons on the starting form are greyed-out/disabled. The called form does not appear.
    I have carried out a number of checks with my own debugging tool (stored procedure writing messages to a table via an autonomous transaction), and forms focus is definitely been transferred to the called form. For example, the WHEN-NEW-FORM-INSTANCE trigger in the called form is definitely being executed.
    I suspect this problem is JVM-related rather than Forms-specific. My current plan of attack is to request the Application Server Logs tomorrow morning (I don't currently have access to them) and see if I can find any Java-related error messages. However, if any of you reading this have experience of this type of problem and can offer any assistance, please don't hesitate to let me know your suggestions/advice.
    Cheers.
    James

    You could check the settings of the window in the calling form. If its set to "Modal" or "Dialog", and the window in the called form has other settings, the new window might be opened "behind" the old window.

Maybe you are looking for

  • Adobe Reader XI will not launch on my Macbook Pro

    I have uninstalled, reinstalled to no avail.  I can't get the program to launch.  It does read some older files, but not newer ones, such as user guides from Cleanmymac2 or bluecross/blueshield.

  • How do i find out the spec of my broken mac

    My macbook pro 17inch is smashed.  I am in the process of an insurance claim and there is dispute its spec.  I know it was i7, they are saying it is i5.  I've got the serial No.  How the heck can I check the spec?

  • Office 2010 Custom Template - folder icon

    Hi, I made a XML custom templates files with many templates for word. I also made a registry patch to make word parsing this xml. Everything works, but I would like to change the categroy folder icon. Is there a way to do so ? BR, SL

  • We are using this code for deleting messege but not working ,

    it is only wokring when i only assign value to sub1 variableassign <html> <body> <%@ page language="java" import="java.sql.*" %> <% String[] list=request.getParameterValues("list"); // String list=request.getParameter("list"); int i; String sub1; for

  • SPA112 can not hear voice on my android phone with CSipSimple

    I configure a SPA112 and between lines 1 and 2 the calls and answers is ok (I receive,  attend calls and hear the voice). When my cell phone call for any of the rows, is also okay. The problem is when one of the lines dials to my cell phone. I answer