Tuenti close session is not possible

Do not know if it happens to me only, but in Archlinux, Tuenti web page, I can not log off because it disappears leaving the top button bar. It is very strange, because in Ubuntu if it appears to exit. I do not know that it is due.
Archlinux: No logging
Ubuntu/Windows: Yes logging
Any idea?

It would help if you gave the URL of the site and the browser you are using! Also your desktop environment might have something to do with it.
I'm no CSS or HTML expert but it looks like the bar is bigger "under Arch" for whatever reason (different DPI?) and the logout text might be pushed to the right and combined with crappy web design this might be the reason that it is hidden.

Similar Messages

  • JMS session is not closed even after calling close()

    Hi All,
    I am using JMS to receive and publish topics for a process,in my java code i
    am creating new JMS Session on demand(ie., whenever a new topic is
    received) after processing the topic i am closing the session with close(),but
    still the session is not closed.In a period of time more sessions are created
    and FD leaks occurs which stops the process functionality.
    Later i moved the on demand session code to a static block, its working fine
    and no FD leak occurs.
    Is this a known behavior or any java bug is there to point this issue,please
    help me regarding this.
    Thanks,
    Ants Balajei

    You should try avoid creating sessions on demand but cache/pool them...
    http://activemq.apache.org/how-do-i-use-jms-efficiently.html
    James
    http://www.iona.com/
    Open Source the Enterprise Way

  • ITS applications do not close sessions

    Hi all,
    we have ITS based version of ESS, as well as one BSP application, all integrated in EP 6.2. The problem is that applications do not close sessions, as it is pretty visible e.g. in transaction SM04. I checked the setting of ~disconnectOnClose=1. Small popup windows closing the session are not visible.
    We use SSO based on SAP logon tickets.
    EP 6.0 SP2 P5 HF8
    ITS 6.2 PL 14
    SAP HR 4.7 PL38
    SAP Basis 6.2 PL 48
    Any idea?
    Thanks,
    Pavol

    Hi,
    After i upgraded my ITS from 610 to 620 Patch level 4 The disconnection was working fine with poping the disconnection.
    But after applying patch level 17 itw as not working even though the parameters.
    ~timeout
    ~disconnectOnClose
    ~userTimeout
    I tried all the option and even created massage in OSS but no luck.
    SO i have to revert back to 620 Patch 4 and now working fine.
    Regards
    Prem

  • New ABAP Debugger Session does not close after Exiting

    Hi Friends,
    I am working on SAP GUI 710 & ECC 6.  When I am  debugging, new abap debugger is opening and I can do analysis normally. When we finish the debugging and want to exit, the debugging session is not closing and i get the following message on top of beugging window "ABAP Debugger Control Session 3 (Exclisive)". I want to know if there is any settings to be done to aviod this.
    Thanks.............
    Regards,
    Chandu

    hey
    check this PDF link below.
    http://www.sappro.com/downloads/Settings&SystemAreas.pdf

  • SSFCOMPOSER - 154 - No output request open. End not possible.

    Hi Experts,
    I'm trying to print multiple smartforms using FMs SSF_OPEN and SSF_CLOSE. Inside the main program RBDAPP01 (Inbound processing for IDOCS) there is a loop at the IDOCS to be processed. Deep within the processing, we have a custom FM being called which prints smartforms. Since there is a loop at the calling main program, I have organized the code in the custom FM such that the first IDOC calls SSF_OPEN and the last IDOC calls SSF_CLOSE, so that all IDOCS in between will be able to print their smartforms. Here is the call stack:
    8
    SAPLZCUSTOM                   
    ZCUSTOMPROGRAM                             
    113
    FUNCTION                     
    ZCUSTOMPROGRAM                                         
    7
    SAPLPPC1                               
    ZCUSTOMPROGRAM     
    136
    FUNCTION                     
    KK2A_GET_DATA_FROM_IDOC                                     
    7
    SAPLPPC1                               
    LPPC1U01                               
    1
    FUNCTION                     
    KK2A_GET_DATA_FROM_IDOC                                     
    6
    SAPLBD20                               
    LBD20F0A                               
    454
    FORM                         
    IDOCS_PASS_TO_APPLICATION                                   
    5
    SAPLBD20                               
    LBD20F0B                               
    69
    FORM                         
    IDOCS_PROCESS                                               
    4
    SAPLBD20                               
    LBD20U05                               
    260
    FUNCTION                     
    IDOC_INPUT                                                  
    3
    SAPLEDIR                               
    LEDIRU02                               
    182
    FUNCTION                     
    IDOC_START_INBOUND                                          
    2
    SAPLBD12                               
    LBD12U04                               
    37
    FUNCTION                     
    APPLICATION_IDOC_POST_IMMEDIAT                              
    1
    RBDAPP01                               
    RBDAPP01                               
    388
    EVENT                        
    START-OF-SELECTION                                          
    The problem is:
    1. When I only have 1 IDOC being processed, SSF_OPEN and SSF_CLOSE happens in the custom FM at the same time. This creates a successful spool.
    2. Whereas, when I have 2 or more IDOCS, SSF_OPEN happens in the first IDOC, but then it goes back to the calling program, and then when the last IDOC is encountered SSF_CLOSE is called. The FM SSF_CLOSE in this scenario calls the exception INTERNAL_ERROR (sy-subrc = 2).
    The system message is SSFCOMPOSER - 154 - No output request open. End not possible.
    Why is this happening? Is it because that other programs (calling programs) may have affected the status of SSF_OPEN? It seems that the SSF_OPEN is no longer open.
    Thanks in Advanced,
    Jack

    No, it will not hold the smartform open, but you don't need to hold it open in order for printout to be accumulated in one spool. Spool system does the accumulation automatically, provided the spool requests that are to be added to an existing spool request are:
    - generated in the same transaction and
    - have the same attributes (such as user, title, output device, client from which the request was issued, number of copies, priority, cover sheet setting, archive mode, and ABAP session number).
    Important is: where do OUTPUT_OPTIONS like printer come from currently? Is print parameters popup displayed on first Idoc for user to choose printer and options? Or do you use USER_SETTINGS = 'X' to simply take over defaults from user master? If the print options dialog is displayed, it needs to be controlled as well so it's displayed only once.
    Assuming print options come from the user in dialog, the logic without explicit open/close could look somewhat like this:
    On first idoc:
    - call SSF_OPEN  importing  JOB_OUTPUT_OPTIONS to display print options dialog; move-corresponding JOB_OUTPUT_OPTIONS to global OUTPUT_OPTIONS;
    - set OUTPUT_OPTIONS-TDNEWID = 'X' and clear  OUTPUT_OPTIONS-TDFINAL, to ensure new spool will be started (overriding user choices for these parameters!);
    - if the user has set OUTPUT_OPTIONS-TDIMMED = 'X' save it globally and clear it;
    - set CONTROL_PARAMETERS-NO_OPEN = 'X';
    On subsequent idoc:
    - clear OUTPUT_OPTIONS-TDNEWID;
    - clear CONTROL_PARAMETERS-NO_OPEN;
    On last idoc:
    - set OUTPUT_OPTIONS-TDFINAL = 'X' (this is not absolutely necessary, but prevents further appending to the spool);
    - restore OUTPUT_OPTIONS-TDIMMED from the value saved on first idoc;
    Calling Smartform:
    - set CONTROL_PARAMETERS-NO_DIALOG = 'X';
    - call smartform passing OUTPUT_OPTIONS and CONTROL_PARAMETERS;
    The logic is somewhat complicated; I'd wrap it in a class (singleton, which would be de-instantiated after last idoc) to avoid global data and code other than simple method call(s) in FM.
    Even if you decide to refactor the logic, it would still be important to understand, I think, why the current logic does not work (where and why smartform gets closed)... Maybe there are some nasty "surprises" somewhere, and your current algorithm should work.
    cheers
    Janis

  • How do i set up a PS3 controller with my mac?Before anyone says its not possible, it is, I've done it before but it now asks me for a passcode and i can't guess it and don't know it, please help

    Before anyone says its not possible, as ive been told many times before, it is, I've done it before but it now asks me for a passcode and i can't guess it and don't know it, please help

    if it keeps asking for the password again just write "0000", add the controller to your favorites, close bluetooth before asked for a password again, and the open bluetooth again

  • Error - GR reduction not possible in MIRO (Message no. FICUSTOM350)

    Hello Gurus,
    I am getting error while doing MIRO (GR reduction not possible. Wrong cmmt item (fin. trans. 30) in GR/IR acct) .
    I have activated FM - BCS. In Customizing transaction OFUP (Make other settings) I have ticked GR and INV and my update profile is 000101 (Payment budget; Payment basis ; Posting date).
    I have created a commitment item for GR/IR specific and assigned financial transaction 40 then also system is giving the same error. The issue is system is not creating a FM line item for GR/IR clearing account at the time of MIGO but only creating for P&L item (Debit Part). Now when we post MIRO system is looking for FM line item for GR/IR (which should have been created during MIGO) for clearing hence error appears.
    Please let me guide if I have missed some configuration or have done some wrong configuration.
    Full Error description is :
    GR reduction not possible. Wrong cmmt item (fin. trans. 30) in GR/IR
    acct
    Message no. FICUSTOM350
    Diagnosis
    You are trying to reduce a goods receipt line (GR) with an invoice (IR).
    However, the GR/IR clearing account has an incorrect financial transaction ('30'
    instead of '40') in the commitment item.
    System Response
    The system cannot calculate a GR reduction. This is not a program error, but
    rather an inconsistency in the customer master.
    In order to calculate the GR reduction, Funds Management (FM) updating has to
    create original records for the GR lines with value type '54' and transaction
    'RMWE'. Otherwise it is not possible to calculate the reduction.
    Procedure
    Correct the commitment item of the GR/IR clearing account. If necessary,
    reconstruct the document in FM.
    Regards
    Rohit

    Hi,
    Sorry, I have a question about message FICUSTOM350. I also encounter this error message when we do MIRO and set the AP amount = 0. I try to set GR/IR as '40' but I found GR/IR account will not determint through FMDERIVE. I found this seems the standard behave in SAP. So, I close the message FICUSTOM350 and MIRO is work OK without error. But when I execute the report FMRP_RFFMEP1AX , the budget is incorrect. The system does not reduce the payment budget. Ex: PO amount = 7000 USD, MIRO AP amount =0 , I think the total budget should be 0, but the total payment budget of the report is 7000. Please advise.
    Thanks and Best Regards,

  • Trying to sync selected (greyed out) contacts to my replacement 4s.  Get error messages - computer not setup to sync - override or OK.  OK - session could not start.  How do I fix?

    I have a new replacement 4s.  I am trying to set it up.  I hate iCloud but need it to sync my calendar to my phone.  I mistakenly set it up to sync Contacts too and found out it synced ALL contacts which I do NOT want.  I used to use iTunes to sync only selected contact folders (one I call Sync).  Others are too sensitive to have on my phone.  So I turned off "where is my iPhone", and turned off "Contacts" on iCloud.  It said it would delete all my contacts on my phone the next time I sync (using iTunes).  So I try to sync my Contacts using iTunes and find that under "Info" on the device tabs my only possible selection is ALL contacts with the "Selected" button greyed out.  But even leaving all checked, I get the message "iTunes cannot sync information with the iPhone because syncing has been disabled on this computer (my Mac).  Do you want to enable syncing?"  I hit the button "Enable syncing" and I get the error message "Syncing cannot be enabled on this computer"  with "Override" and "OK" my choices.  If I select "OK" I get the error message "iTunes could not sync information to the iPhone (Name) because a sync session could not be started".  I can sync my music and my apps but get this stupid message otherwise.  What gives and I do I fix this?  Thanks

    Actually I can't sync anything - no music, photos, etc.  And it tries to start syncing as soon as I plug in my iphone and itunes is open.  It ends "sync" but hasn't done anything.  I have tried deleting lockdown files (per "solution" found here).  I have deleted all my backups (per other "solutions").  I have restored my iphone 2x.  I have done soft boots of my iphone.  My macbookpro 10.9.3.  iphone 7.1.1.  iTunes 11.2.2 (3). 

  • Upgraded to latest 10.8.2, iTune 10.7 and IO6 and iTunes will not backup because session could not be started with my iPad3 and iPhone 4

    Since the upgrade, I have been hounded by error messages that my iPad and iPhone cannot be backed up to iTunes because a session could not be started, then a following error message that iTunes could not sync inforimation to iPad/iPhone because a connection could not be established.
    Now I have gone throught various discussions and have done - rebooted both Mac computer and iPad/iPhone; changed USB cables/ports; deleted iPod cache; reset settings to both iPad/iPhone; tried syncing over wifi; and removed contents of lockdown folder.  And after all this, the error messages just keep rebounding back.
    So apart from doing a system and/or iTune re-install, is there any assistance from Apple about this?
    This is very un-Apple and reading the Windows section of this discussion, people are not happy.  Oh, I'm not happy too...

    I wonder if the disk being referred to is actually your iPod which is not plugged in. Maybe something has stuck thinking the iPod should be there.
    Try completely removing all the iTunes related programs according to this method.
    http://support.apple.com/kb/HT1923
    Restart you PC and see if startup improves.
    If it doesn't improve you need to consider the possibility that there is something else going on.
    If The problem goes away, hopefully a fresh install will be OK.

  • The upgrade of creative cloud is not possible because there is always the error code 204?

    The upgrade of creative cloud is not possible because there is always the error code 204?

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -and try some steps such as changing browsers and turning off your firewall for downloads
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Backup of mirrored database is not possible?

    Hi Please correct me,
    backup of mirror database is not possible right?
    Thanks
    Shashikala
    Shashikala

    Hi Shashikala,
    While a database mirroring session is active, the mirror database is in a recovering state and it is not accessible. Thus as Ashwin’s post, backup and restore of the mirror database is not allowed. In addition, you need to note the following things:
    •Backup of the principal database is allowed, but BACKUP LOG WITH NORECOVERY is not allowed.
    •Restoring the principal database is not allowed.
    For more information, you can review this article:
    Database Mirroring and Backup and Restore.
    Thanks,
    Lydia Zhang

  • Dual Boot with Snow Leopard and Mavericks not possible?

    I have a Early 2011 Macbook Pro with 2,3 GHz i7 Quad and two 512 GB SSDs (the secondary disk in an optical drive bay enclosure). This Macbook Pro can run Snow Leopard and Mavericks on the primary disk without problems. When I try to set up a dual boot system however, problems appear and it looks like it is not possible. When I start from Snow Leopard, I cannot select Mavericks as a start volume and vice versa. The error message says something like "Bless tool" cannot use this disk, i.e. unmount and boot from it. The problem remains when I exchange the disks (putting the primary disk in the drive enclosure and vice versa). When I put the secondary drive in an external case however, it is possible to boot from it -  but strange things happen when the system starts: My computer clock is reset to 1/1/2001, WiFI passwords are not remembered for more than one session, disk permissions are reported as "repaired" but do apear as not repaired when I check them again - and other issues). I have verified both disks already and repaired permissions but that does not change the situation. So my experience is different from what is said in https://discussions.apple.com/thread/566781. It looks like the latest Mavericks cannot coexist with Snow Leopard on neiter a secondary internal drive nor on an external drive. This is strange since both disks and systems work flawless when run alone. Any suggestions to solve this problem?

    When I check the Mavericks disk in the optical drive with disk utility after booting / running Snow Leopard on the primary disk I get som errors, see below ("disk utility Info"). So after all, I decided to erase the disk and install Mavericks new. But even erasing the disk is not possible when it is in the optical drive enclosure. I get this error message:
    "Volume Erase failed with the error:
    Could not unmount disk"
    When I put this disk into an external case connected via USB however, it starts and runds MAvericks without any Problem. Same happens when I put thie Mavericks disk into the internal primary hard disk place.
    "disk utility Info" when verinfying the secondary drive in the oprical bay:
    Verifying volume “Samsung SSD Daten”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Unused node is not erased (node = 40)
    Checking catalog file.
    Unused node is not erased (node = 30)
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Unused node is not erased (node = 8)
    Checking volume bitmap.
    Volume bitmap needs minor repair for orphaned blocks
    Checking volume information.
    The volume Samsung SSD Daten was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired. Click Repair Disk.
    Verify and Repair volume “Samsung SSD Daten”
    Error: Could not unmount disk

  • Parse method is not possible for this type Exception in web dynpro

    I have a file upload component and one button in a view.
    I have created a binary type context element and mapped it with fileupload component.while clicking the submit button I am getting " Parse method is not possible for this type" exception.
    help me out.

    Hi sridhar,
    Use this code for Upload
    context u create one attribute(up),u assign the data type as "Resource"(which is dictionary type)
    InputStream text = null;
        int temp = 0;
        try
             File file = new File(wdContext.currentContextElement().getUp().getResourceName());
             FileOutputStream op = new FileOutputStream(file);
             if(wdContext.currentContextElement().getUp()!=null)
                  text = wdContext.currentContextElement().getUp().read(false);
                   while((temp=text.read())!=-1)
                                                                       op.write(temp);
             op.flush();
             op.close();
        catch(Exception e)
         e.printStackTrace();   

  • In App Store I'm blocked on the window of a certain application, not possible to get out of it

    In App Store I'm blocked on the window of a certain application, not possible to get out of it

    Try closing the App Store app via the iPad's multitasking bar and see if it works ok when you re-open it :
    iOS 7 : double-click the home button to open the taskbar, and then swipe or drag the App Store app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    iOS 6 and below : from the home screen (i.e. not with the App Store 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the App Store app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't fix it then you could try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I would like to be able to size images by kilobytes instead of pixels--is this possible?  I use I-Contact which requires a maximum of 70kb per image.  For best quality I want to make the images as close to 70 as possible.  Currently I choose a size of 300

    I would like to be able to size images by kilobytes instead of pixels--is this possible?  I use I-Contact which requires a maximum of 70kb per image.  For best quality I want to make the images as close to 70 as possible.  Currently I choose a size of 300 pixels on the shortest side but sometimes this gives me an image of slightly greater than 70kb and sometimes the image is just 30-40kb.  Is there a way to be more precise in reaching but not exceeding 70 kb?

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    You can opnly resize using the available options and file size is not one of them
    LN

Maybe you are looking for

  • ITunes CRASH (wont open)

    Everytime i try and open iTunes i get a system error saying "Itunes has encountered a problem, and needs to close". ive tried everything. from reinstalling to uninstalling. delteing my library info, clearing app temp. etc. i just cant get it to work.

  • (PLEASE HELP)Can Acrobat X pro do a Batch Conversion to Word? (multiple file conversion)

    I am trying to convert multiple PDF files to word using Acrobat X Pro and I am not sure if it is capable of doing this process. I have tried doing one file and it works great even on files that have colums and tables but I cant figure out how to conv

  • Nokia 2710 navigator - non-breaking spaces possibl...

    Hi there, this has been driving me nuts, and it seems like there should be a way to do it! I can format a message in the editor with spacing and it looks perfect, but the spaces are being trimmed it seems! Either before or after sending! Is there a w

  • 2 BBM Pins on my Contacts' profile

    I had a problem with the sliding mechanism of my Torch.  When I took it for repairs they inserted my SIM into another BlackBerry phone and started it up.  Now that I have my phone back, everyone on my BBM Contacts see two profiles with two different

  • Installed MySQL, but can't connect to database...?

    I run a wiki website, but sometimes want to be able to play with ideas and prep pages when I don't have connectivity or when the connection is bad. I've tried installing MediaWiki right on my MacBook, but while I've ensured that PHP and MySQL are set