Enabling custom cookie handling kills facebook dropdowns

Hi,
I'm using firefox for several years, but recently i discovered a weird effect on one of my computers, which was consistent across many FF versions (up to the recent version 17 now).
All drop down menus on facebook were not working for me. On one pc I can click on the red globe, and a menu opens - while on the other pc nothing happened. Now I was able to reproduce it.
As soon as I activate the "ask how long cookies are stored" option in the privacy settings, the drop down menus wont work/show. Choosing the default "Keep them as long as they are valid" reenables the drop down menus.
I really like the cookie storage time option so i can decide which website will remember me.

I have been having this same problem too. I've tried disabling all my add-ons/plugins, but it hasn't helped. I added back just Java, but that did not help. I have also added an exception for facebook and pixel.facebook.com, no dice. It does work correctly in my IE.
I have also run malware scans (GMER), nothing shows up. If I set it back to remember history, removing the custom options, it works.
Any other suggestions?
Thanks in advance!

Similar Messages

  • We would like to have a possibility to enable SAP to handle split payments

    Hi SD Gurus,
    We would like to have a possibility to enable SAP to handle split payments of 1 order. One order invoiced on one document should have two due dates shown on the final invoice to the customer ( payment 50% in October, 50% in November) and should be posted like this in SAP.
    Weather it is possible.
    Thanks in advance for providing the valuable information.
    Best Regards,
    Jack

    Hi Shiva,
    Thanks for your reply,  But the payment term option is good but when we create the invoice were it is picking up the whole document value.  Say if Sales order value is 4000.
    But when doing the invoice it should have 2000.  and in the final invoice it should have 2000
    when we check in the final invoice document flow it should display both the invoice dates.
    Please kindly help in this reagard.
    Regards.

  • 11503 and SSL Termination - Cookie Handling

    I'm looking for some insight on how the 11503 handles SSL termination,
    specifically with regard to cookie handling. We are going to be
    installing a 11503, so it can handle load balancing, content switching
    and SSL termination instead of IIS / WLBS. If you move SSL termination
    off of the Web servers and disable SSL in IIS, how does ASP.NET handle
    secure cookies? We want to set requireSSL="true" in Web.config, but
    since the Web server will no longer be running SSL, it won't enforce
    that attribute. I was wondering if the content switch passed any
    special header to IIS, or if the content switch can be configured to
    add the secure attribute to all cookies. I haven't found anything in
    the documentation so far.

    Depending on your software version, this page has links to CSS SSL configuration Guides based upon the software you're running.
    http://www.cisco.com/en/US/customer/products/hw/contnetw/ps792/products_installation_and_configuration_guides_list.html
    You can configure the CSS to issue cookies in place of the actual server.

  • Custom event handler

    Just curious. I made a custom event handler that is
    dispatched from within a class when an XML document is loaded. The
    listener is attached to the instance of that class in the FLA. The
    attached code to this thread is what is for the class instance.
    Does that have to be out there? Is there a cleaner way to do it so
    that the code would be away in a class? Just wondering....
    Thanks!

    Well I need my instance to know when the data is loaded into
    the object, but I wish there was a more transparent way to do it. I
    guess I could somehow put that stuff into the initiation of the
    class....

  • How to enable Custom Objects in offine edition of CRM On Demand

    Hi,
    We need to enable Custom Objects in the offline edition of CRM On Demand so that Sales Reps can capture the additional information while they are in the field. I wanted to know how do we enable the Custom Objetcs in the offline edition.
    Any pointers would be of big help.
    Thanks,
    Prashant

    Hi, Offline edition doesnt support custom objects or any other object that is not available as part of the default offline solution. Hope it helps
    -- Venky CRMIT

  • ADF Custom error handler not working.

    Hi All,
    i am using jdev version 11.1.1.5.0. i have created one custom error handler class in model layer which extend DcErrorHandlerImpl class.
    and do the entry in Databinding.cpx file
    *<Application ErrorHandlerClass="mypackage.classname"/>*
    i have override getDisplayMessage(BindingContext ctx, Exception ex) method to show SQL Exception which comes from database table trigger.
    code is following-
    package com.in.jagran.view.services;
        import java.sql.SQLException;
        import oracle.adf.model.BindingContext;
        import oracle.adf.model.binding.DCErrorHandlerImpl;
        import oracle.jbo.JboException;
        public class AclasErrorHandler extends DCErrorHandlerImpl {
          public AclasErrorHandler(boolean setToThrow) {
            super(setToThrow);
            System.out.println("Inside Error Handler class");
          public AclasErrorHandler() {
              super(true);
           // this(true);
           * Returns the message that will be reported to JSF for each error that occurs.
           * Returning "null" is the way the custom error handler signals that a given exception
           * should not be reported to the client.
          @Override
          public String getDisplayMessage(BindingContext ctx, Exception ex)
            if (ex instanceof oracle.jbo.ValidationException) {
              return super.getDisplayMessage(ctx, ex);
            else {
              // Extract and return the error message that has to be displayed
              Exception exception = ex;
              String message = "";
              // If this exception is an instance of JboException,
              // try to find the cause by recursing over the eventual causing exceptions
              if (exception instanceof JboException)
                Throwable[] exceptionList = ((JboException)exception).getExceptions();
                while (exception instanceof JboException
                        && exceptionList != null && exceptionList.length > 0)
                  exception = (Exception)exceptionList[0];
                  if (exception instanceof JboException) {
                    exceptionList = ((JboException)exception).getExceptions();
              // *** Special processing of SQLExceptions
              if (exception instanceof SQLException) {
                message = exception.getMessage();
                // Ignore the lines in the error message that indicate the line number in the PLSQL code that the error resulted on.
                int ind = message.indexOf("ORA-06512");
                if (ind > 0)
                  message = message.substring(0, ind);
              // *** If the the reason for the JboException was data creation exception then display the message
              // of the top JboException (i.e. JBO-*****: Invalid numeric value, date format or time format)
              else if (exception instanceof NumberFormatException || exception instanceof IllegalArgumentException) {
                // Report the top exception
                message = ex.getMessage();
              // Otherwise report the message of the lowest exception in the hierarchy
              else {
                message = exception.getMessage();
              return message;
        }but it is not working for me.
    thanks in Advance.

    yes i have used dubugger.
    i have set break point to following line-
    return super.getDisplayMessage(ctx, ex);
    if (ex instanceof oracle.jbo.ValidationException) {
            return super.getDisplayMessage(ctx, ex);   
    }when atttribute validation done like i have attribute of type number and i have done the validation "must be greater than 0" now when i have given negative value control go to above line.
    and i have added following code also in handler class
            @Override
               public void reportException(DCBindingContainer dCBindingContainer,
                                           Exception exception) {
    System.out.println(exception.getMessage());
                       super.reportException(dCBindingContainer, exception);
                   }now when i have done commit operation control go to here and println statement print follwoing error on log window.
    JBO-26041: Failed to post data to database during "Rollback to Savepoint": SQL Statement "null".

  • Why is there no option to enable custom vibrate

    I have just updated my iPhone 4s to IOS 6 and there is no option to enable custom virbrate. any ideas?
    its ok i found how to do it

    Glad you found it. I believe it is under the Sounds settings, right? And I also believe you can custom set vibrations for each contact just as you can change text tones by editing the contact and selecting text tone or ringtone.
    Have a good day or night whichever side of the world you are on!

  • Problem reading custom property file from custom event handler.

    Hi,
    My custom event handler needs some bits of information that I have set up in a property file. However, when the event handler runs it throws a FileNotFound exception - actually its because permission was denied.
    I have added the code System.getProperty("user.name") to find out the actual user that the event handler is running as. It reports that "oracle" is the user.
    That's great. However, the permissions on the file will allow oracle to read/write the file. If I log onto the server where OCDB runs (as oracle), I can vi the file.
    The file is owned by another user, but the "oracle" is a member of the group that has read/write (we're running on a unix box). The file is not 777.
    The event handler is actually calling a static utility method that returns the Properties. This utility is used elsewhere in other custom apps in conjunction with OCDB (on the same server). It works there, so the utility is functioning correctly.
    Is there something going on that I'm missing? Like somehow the event handler is acually runn as somebody else?
    Here is the node log.
    2007/07/17 12:52:16 [oracle.ifs] [37] 434364 system FINE: Error /opt/csc/sfi/configuration/sfi.properties (Permission
    denied) Additional INFO: java.io.FileNotFoundException: /opt/csc/sfi/configuration/sfi.properties (Permission denied)
    Thanks in advance for the help.
    Winston

    Matt,
    Sorry to have wasted your time. It was a server reboot issue. The ocdb server hasn't been restarted since early July. We added the users and groups late last week. Although we tested on line, the server wasn't quite up to speed with the new changes.
    We bounced the server and all is well.
    Thanks
    Winston

  • Enable customer clearing in vendor master

    Dear All
    I have assinged customer code in my vendor master, but I also want to enable this vendor for customer clearing.Where in vendor master I can do this to enable customer clearing for this vendor.
    Reagdrs
    SK

    Hi,
    Go to XK02 - for the vendor choose option "Payment ransactions" at Company Code data and here TICK option "Clrg With Cust."
    Also in customer master - Commpany code data - Payment transactions - TICK - "Clearing With Vendor" and at General Data  - Control data tab maintain the Vendor code.
    Regards,
    Rakesh

  • Custom View Handler

    I am creating a custom view handler , but I want that this view is used only for specific files(views) and for all other files I want that default handler to be used , can we do this in JSF ??If yes then how ??

    In your createView method of custom view handler, One of your parameter represents viewName. I guess you can inspect the viewName and delegate the method calls the appropriate implementation. You may also use a resource bundle in conjuction with this.
    This strategy depends on the enhancements that you wish to do in your custom implementation.
    I have never tried this before but dont you think its possible in your case?

  • How to set up a label control from custom event handler?

    Hi,
    Below I try to describe my problem:
    I have a single instance of MyClass (I use Cairngorm framework), with ArrayCollection as a variable, in which I would like to keep a couple addresses from database.
    Additionaly  I created a custom components with a list of people retrieved from database, with eventhandler  for a doubleclick event. After I doubleclick on some person, I create a custom event and dispatch it. In command class connected with this event I connect to the database and get full data about this person and a set of her addresses. This set of addresses I placed into ArrayCollection in my model variable. And now I have a problem, because one of this address (the birth place) I would like to display below the list with persons, in a Panel with a couple of label control, but .... I can't to bind label control to my model.addresses[???] because I don't know if this doubleclicked person has this birth address at all?
    I wonder if it is possible to set up label control in my custom components in time when I'm receiving the data from database in my custom event handler???
    One of the way to achieve this is to define a string var in my model and placed this special address in it, and then the label control to this variable, for instance {model.birthplace}, but this is only needed for a moment, I don't want to keep this address in extra variable in model, because I have already it in my ArrayCollection in model, so it would be a duplicate.
    I hope that you could understand me and my english :-)
    Best regards

    Looks like I migh not be a novice swing programmer for long then.

  • Custom Error handling in DataSheet View with pop-up message or label controls or HTML

    I have a requirement in which DataSheet view is used to bulk edit or input list items and handle validations while in the process.
    We have validations done in event recievers before creating the list item. But could not provide a pop up or message with summary of all validation errors. these are buiness custom validations.
    Is there a way to custom error handle datasheet view? Is there a way to invoke a UI in context from event recievers?

    I have a requirement in which DataSheet view is used to bulk edit or input list items and handle validations while in the process.
    We have validations done in event recievers before creating the list item. But could not provide a pop up or message with summary of all validation errors. these are buiness custom validations.
    Is there a way to custom error handle datasheet view? Is there a way to invoke a UI in context from event recievers?

  • Implement custom fault handling in bpel

    Hi,
    Can you please provide some link on how to implement custom fault handling in bpel
    Thanks,
    kpr

    See the article below for details on implementing custom fault handling.
    http://beatechnologies.wordpress.com/2011/07/18/fault-handling-in-oracle-soa-suite-advanced-concepts/

  • EDT custom exception handler

    Hi,
    Is there any posibility to add custom exception handler to EDT? I'm thinking to implement an automatic feed-back from a client aplication. When an exception occurs in EDT it will automatically send to server. The problem is that unsigned webstart application have no permissions to call Thread.setUncaughtExceptionHandler() on EDT.
    Is there any workaround?
    Anton

    Hi,
    Is there any posibility to add custom exception handler to EDT? I'm thinking to implement an automatic feed-back from a client aplication. When an exception occurs in EDT it will automatically send to server. The problem is that unsigned webstart application have no permissions to call Thread.setUncaughtExceptionHandler() on EDT.
    Is there any workaround?
    Anton

  • ADF11g+ Custom error handler

    Hello,
    I am using Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    I defined the custom error handler as mentioned in the ADF development guide.Facing weired issue when AM method is called from task flow.
    e.g,
    AM method
    public showSuccessMessage(){
    this.getDBTransaction().addWarning(new JboWarning("Hello Sample message from AM"));
    Above method is called from taskflow and corresponding action is specified in the page.I have task flow ErrorHander activity defined for the task flow also.When I click the button to call the AM method,Jbo warning raised in AM and catched by the task flow error handler and after this control is passed to CustomErrorHandler and message shows properly.But this happens only first time.After that control never goes to custom error handler. Am I missing some thing??
    Any idea why??
    Thanks
    RB

    Hi Frank,
    Thanks
    What I noticed is,
    Case:1
    when warning is raised using the addWarning api from AM, binding layer throws exception of type Warning,catches in task flow error handler and directly goes to get getDisplay message method of the custom error handler which is defined in databinding.cpx only once.After that it catches in taskflow error handler and never goes to custom error handler defined in data binding.cpx
    Case2:
    When I raised it as throw new JboException flow goes reportException of custom error handler and which calls the getDisplay message.In this it even not going to task flow error handler.
    If you can confirm this is expected behavior or it is bug that would be great,it helps us define the exception handling framework.
    Thanks
    RB

Maybe you are looking for

  • MacBook Pro: Facebook is always crashing Safari

    <----this is what pops up after is shuts down I have a MacBook Pro, and it works fine until i open up 'facebook' on safari . everytime i open facebook on safari, within a couple seconds it shuts down unexpectedly.

  • IPhone 5 loses battery quick

    Who else has been losing battery on their new iPhone 5

  • Adding objects to an object package

    I am using DESKi XI and I am trying to add a .rep report to the CMC so I can schedule it every day in InfoView. On page 189 of the BO Enterprise Administrator's Guide it says to open the object package in the CMC, click the New Object button and a li

  • DEBMAS - 'Application document not posted'

    HI, We are passing DEBMAS and ADRMAS from MDM to R/3 via XI. ADRMAS gets posted successfully. However in case of DEBMAS we get Error 51 'Application document not posted'. While debugging we found that the messages are not passed to T_BDCMSGCOLL (incl

  • How to Lock particular template for user editing.

    Hi Gurus, we have some templates created on top of infoset querrys to display the output in specific format. I want to lock particular templates for user modification. That means when the user is trying to change the template layout and try to save w