New firefox not working well at all!

Since this new version Firefox takes an excessive amount of time to start up, and seems to crash all the time. Trying to go to my bank every time tried to input, user name etc screen would fade and would get message "Firefox not responding". Other things noted does not open my home page when I start, this just started to happen today. Was not opening my home page when I opened another tab, that was from install, Just does not work for me would like to keep using but if I cant even go to my bank then there is no point.

If you have problems with current Shockwave Flash plugin versions then check this:
* see if there are updates for your graphics drive drivers
'''https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration'''
* disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
'''https://forums.adobe.com/message/4468493#TemporaryWorkaround'''
* disable hardware acceleration in the Flash plugin
'''https://forums.adobe.com/thread/891337'''
See also:
* '''http://kb.mozillazine.org/Flash#Troubleshooting'''

Similar Messages

  • After upgrading to IOS 8 my iPhone 5 wifi is not working well at all .. and can't connect to any of apple services like apple store even can't upgrade my application

    After I upgraded to IOS 8 my iPhone is not working well at all .. the most serious issue is the wifi which is too slow and can't connect to apple store and can't update my application  .. also tried to search or update for ios 8 but also can't connect . safari also always can't connect to any the server . please check and advise

    Hey ahmedfromtanta,
    Thanks for the question. After reviewing your post, it sounds like trouble with Wi-Fi. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    iOS: Troubleshooting Wi-Fi networks and connections
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • IPod Touch 5th gen - GPS Very Vague / Not Working Well at All

    I've been trying to use the NavFree GPS app on my new iPod touch 5th generation. 
    All I can say is that it sort-of works - in so much as it displays the vague vicinity I'm in within a few streets, however most of the time it just seems to be constantly hunting around for a location and is useless in the car for actual real-time directions - which seem to be randomly thrown out every now and then.
    I've tried locating it in numerous places on the windscreen and on the dashboard but it hasn't made any difference whatsoever.  Also when using it out in the open in walking mode, it will locate me for a moment then will wander off again and will start to show me standing in numerous different streets and places nearby.
    I'm very disappointed at the moment because I purchased the full version with all the extras thinking that I've solved my sat-nav needs, but it's unusable as it is.
    Can anyone help me with fixing this?
    Cheers.

    The iPod touch does not have a GPS radio. For location it relies upon the locations of nearby wifi routers that are in Apple database of routers and their locations. Thus, this app/the iPod alone without a real GPS accessory, works very poorly in a car since it really can't see may wifi routers and without a internet connection, can't access the Apple database to try to locate new routers that it finds.

  • Downloaded 6.1 on iPod touch. ITunes not working  well  can I downgrade back to 5.1

    Can I downgrade to 5.1 from 6.1?  Just updated to 6.1 and hate it! iTunes is not working well at all! Shuts down!

    i believe there is a way to revert to an older os if you still have the file on your pc...if not then you'll have to take it up with apple...maybe they can give you a link to an older version...do not follow the links on google, for most of these have a malware hidden within...i found this out the hard way

  • Facebook is not working well on Firefox for two days now?

    For two days now, Facebook is not working well on Firefox...all other web sites are fine, Facebook is not loading like it was, prior to yesterday, there were no problems. Facebook is working fine on Internet Explorer, but not on Firefox. What's up?

    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences''' in the address bar and press enter.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences''' in the address bar and press enter
    Select '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • I have to reinstall Mail as it's not working well. How can I make a back up of my emails so as not to lose them all?

    I have to reinstall Mail as it's not working well. How can I make a back up of my emails so as not to lose them all?

    Thank you for your time Woody. Recently the Mac seems to freeze a lot, seemingly due to a problem with the airport, especially if the computer is inactive for anything more than a few minutes. Then yesterday I suddenly couldn't send or receive messages so I got in touch with my server and they reconfigured the mail account. I can now receive messages but can't send them, always getting a timed out message when I try to send an email. I phoned the server again and they said it must be a problem with Mail as we tried sending a message online from the server's webpage and it worked fine, so they suggested I reinstall Mail. So hence my original question. Sorry for the rambling! I'm not very computer minded.

  • New FocusTraversalPolicy Mechanism Does Not Work Well With OO Designs

    I would like to complain about the new focus traversal mechanism not working well with object-oriented GUI designs.
    Specifically, we have many reusable panel classes that can be swapped in and out of reusable dialog classes. On some of these panels, the default focus traversal is not what is desirable, perhaps because one component on the right side of the window is just slightly higher than a component on the left side, maybe due to the component on the right having a label on top, and so the default focus goes to the component on the right instead of the left. So we have a need to be able to explicitly define the order of components in some panels.
    If I try to define a focus traversal policy in the panel's constructor, a NullPointerException is thrown because the panel's focus cycle root is null (the panel has not been added to any dialog or frame yet).
    If I try to associate a focus traversal policy at the dialog level, it would have to explicitly reference its child panels' inner components, which would break the encapsulation of the panels. It would also make it hard to have generic dialog classes into which various reusable panel objects can be swapped.
    Someone suggested making each panel a focus cycle root. This makes it hard to "break out" of one panel to move on to the next panel in the dialog. Special keys would have to be assigned to try to cycle out, and these keys would have to be different than the normal traversal keys, making them inconsistent and nonintuitive to the user. Also, the focus policy would have to know if the dialog had more than one panel, what order the panels were in to know whether to cycle to the next panel or not, etc. This is a mess.
    Does anyone have any idea how to get around these problems? I have tried using a global focus policy with a global hash map of prev/next component key-value pairs, but we are still running into trouble with some deeply nested tabbed dialogs. It's just not possible to always have the focus cycle root in existence at the point where you want to explicitly define traversal between two components, or when you are trying to establish the default component for a panel in a tabbed pane.
    Has anyone else run into similar issues?
    Robbie Gilbert
    [email protected]

    I agree completely. One of the popular consultants on this forum stated that the new focus mechanism was more versatile and only a little more complex. I would say it's more than a little complex given the trouble average programmers are having understanding how it works...at least at first...and after understanding it realizing that they are going to have type their fingers off to update their code. Oh, and the dread of maintaining this awful mess.
    I'm currently having the same problem as you Robbie. Some of my reusable panels need special tab ordering...that's not usually a problem, in most programming environments, till now. Now I have to go around the world and back just to get my stupid cursor to be in the right place when I hit the tab key??!!! and special key mappings just to get out of a focus cycle...lame.
    And how is an IDE graphical designer going to work with this? It's not, that's how...ok maybe if some kind person or company creates a custom focus traversal policy editor of some kind, I don't know.
    Good grief Sun! We need something to help us meet our deadlines, not solutions that force us to spend 80% of our time customizing every stinking bit of UI functionality we need!!!
    JTables are even worse. I've mastered most of the garbage that is JTable after many months of pain and I don't know how I'm going to help my peers understand them in any short amount of time. Most of them were Oracle Forms programmers, not that that is any great solution either. But they will likely have problems.
    In conclusion, I wish I had chosen another UI technology for our new product client, and may yet.

  • MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICK ON TAB

    MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICKING ON TAB

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Firefox 8 not working well, in facebook plzzz help !!!

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/897988]]</blockquote>
    my firefox 8 is working slow in every prosess .....its not working well smoothly .....also with facebook.....synaptics point device is not working properly in facebook with firefox 8 ....
    there was no problem in my laptop...because other browser working smoothly....
    but firefox is my MOST FAVORITE
    PLZZZZ HELP !!!!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Plzz i think i opened a hacked internet page and now notting works well autocad stopped working firefox as well and i donno wat to do

    plzz i think i opened a hacked internet page and now notting works well autocad stopped working and firefox as well ........could mac os be virused??

    There are no Mac viruses, only malware that requires your assistance to get installed.  For more on this, see:
    http://www.reedcorner.net/guides/macvirus
    As to your problem, we can't say what might have happened without more information.  Try restarting your computer, and if that doesn't help, we need to know what you saw and what's happening now in greater detail.
    (Note that my pages contain links to other pages that promote my services, and this should not be taken as an endorsement of my services by Apple.)

  • Seek your help about the issue of Sun JES can not work well in HP9000

    Recently I am testing Sun JES (Java Enerprise System) 2005Q4 in HP9000 (HP-UX 11.11), but I encountered some troubles, after installation, Sun AM -- Access Manager (its old name is Identity Server) and Sun Portal Server can not work well, others (such as Sun App Svr, Directory Svr, Admin Svr) are OK.
    When I try to access AM admin console (http://myhost.mydomain.com:8080/amconsole), exception was thrown as below:
    exception
    javax.servlet.ServletException
    org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:300)
    org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    root cause
    java.lang.NoClassDefFoundError
    com.iplanet.sso.providers.dpro.SSOProviderImpl.createSSOToken(SSOProviderImpl.java:99)
    com.iplanet.sso.SSOTokenManager.createSSOToken(SSOTokenManager.java:242)
    com.iplanet.am.console.base.ConsoleServletBase.checkAuthentication(ConsoleServletBase.java:355)
    com.iplanet.am.console.base.ConsoleServletBase.validateSSOToken(ConsoleServletBase.java:238)
    com.iplanet.am.console.base.ConsoleServletBase.onBeforeRequest(ConsoleServletBase.java:188)
    com.iplanet.jato.ApplicationServletBase.fireBeforeRequestEvent(ApplicationServletBase.java:1105)
    com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:591)
    com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:459)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    sun.reflect.GeneratedMethodAccessor66.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    java.security.AccessController.doPrivileged(Native Method)
    javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    After many test, I still can not finger out what is the real reasons casued this exception in HP-UX.
    The possible risk is JES 2005Q4 requires some software and hp-ux bundles patches before install JES, but I can NOT find the exact version of them from hp web site, and use corresponding higher version to release them.
    JES 2005Q4 needs:
    Perl (B.5.6.1.F) HP-UX11i
    Tour A.02.02
    Libiconv 1.9.2
    GOLDAPPS11i & GOLDBASE11i (June 2004, B.11.11.0406.5)
    I installed:
    perl_D.5.8.0.G_HP-UX_B.11.11_32+64
    TOUR_B.03.01_HP-UX_B.11.11_32_64
    libiconv-1.11-hppa-11.11
    GOLDQPK11i_B.11.11.0612.459
    I am very appreciated for your help!
    Thanks!!
    Vhu
    ===============
    some test env:
    bash-3.00# uname -a
    HP-UX rp3440 B.11.11 U 9000/800 1110163507 unlimited-user license
    bash-3.00# java -version
    java version "1.5.0.01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0.01-_06_jun_2005_05_20)
    Java HotSpot(TM) Server VM (build 1.5.0.01 jinteg:06.06.05-04:39 PA2.0 (aCC_AP), mixed mode)
    JES media:
    java_es_05Q4-ga2-hpux-parisc.zip
    installed components in JES: App Svr, AM, Portal Svr, Directory Svr, Admin Svr.

    This is a double posting, please only post in one discussion at a time.
    Keynote 6.5 is stable and reliable under Yosemite for most users.
    As with all new operating systems and applications, a small number of users find a few problems.
    Copy and pasting text from and into Keynote from all the applications I have, work perfectly: the applications include; Safari, Mail, Word, PowerPoint, excel, Pages, Numbers, iMovie, Photoshop, InDesign, Illustrator.
    If you want to place graphics into Keynote, use one of the following methods:
    Insert > Coose
    click the media button on an image placehoder
    click the media button on the tool bar
    drag and drop from a Finder window
    Copy and pasting images into Keynote is not supported

  • Webcam not working well

    Hi there!
    When I bought this MacBook Pro 1 month ago, everything was working fine, even the webcam, although I always thought it was a little dark.
    Now I realize my webcam is not working well anymore, showing a duplicate image, with lines and green parts. You can see a snapshot I took with FaceTime.
    This happens with all the users I have here and even with new ones.
    I have also reset the SMC and PRAM and the problem stays the same.
    What can I do more? Is this an hardware problem?
    The model is an ME664.
    Thank you.

    It is under warranty.  Apple will fix it or replace it.  Make an appointment to visit and Apple store.

  • Touch pad not working well

    My notebook is HP Pavilion 13 Notebook PC, and the problem revealed just before I bought this new notebook.
    This notebook run really well on other function except the touch pad, it not working well caused by the following problems.
    When using the touch pad, occasionally, it will return to the place that I move a second ago.
    Then, the computer will take it as a click on that place instead of movement.
    Eventually, it click on the starting place mistakenly.
    I am wonder these is a hardware problem and it may caused by a software problem too, holp someone could help me to solve these problem.
    Thanks

    Hello @LouisTONG,
    Welcome to the HP Forums.
    It appears that you're tocuhpad is causing some issues. I will attempt to assist you with this.
    If this is a new notebook, make sure you've run all Windows updates and completed any updates listed in the HP Support Assistant.
    Something may address that issue.
    This may also have something that could help you: Using and Troubleshooting the TouchPad or ClickPad (Windows 8).
    If you need further assistance could you please provide the Model and Product numbers for your notebook.
    Thank you for posting on the HP Forums.
    I worked on behalf of HP.

  • Why ps3 is not working well with airport

    why ps3 does not work well wth the airport?

    If you are referring to online gaming, then PS3 like all non-apple devices uses upnp to open ports.
    Apple uses NAT-PMP to open ports.. East and West.. never the twain shall meet.
    If it is internal wireless issues.. that is different.. airport should be just like any other wireless router.
    If you tell us the issue we have more hope to help.

  • My Safari browser is not working well. Junk pages keep poping in and key pages for me appear intoxicated by alien pop ups preventing me navigate that page. Updated last Safari version and problem prevailed. Tried downloading Safari for Mac OS X Mavericks.

    My Safari browser is not working well. Junk pages keep popping up and key pages, for me, appear intoxicated by alien pop ups preventing me navigate that page.
    I updated to latest Safari version (7.0.4) but the problem persists.
    I tried downloading a new version of Safari for Mac OS X Mavericks but couldn't find it available.
    Thanks for your help.

    The pop ups are malware. It's not necessary to reinstall Safari.
    Help here ..
    The Safe Mac » Adware Removal Guide
    The Safe Mac » Genieo
    The Safe Mac » Mac Malware Guide
    Just so you are aware, on a Mac running Mavericks, the only way to reinstal Safari to to restore OS X using OS X Recovery

Maybe you are looking for

  • Multi-Mapping Error after copying into new namespace

    Hi everybody, we got a BPM running using a multi-mapping. We decided to design new namespaces. After copying every IR object (datatype, message-type, mappings etc.) --> SXMB_MONI shows a mapping-error. But when I take the payload and test the mapping

  • Oracle financials interview experiance

    Hi buddy, today i went to an interview for oracle functional consultant designation in some MNC co. they 've asked me some questions somehow i 've given good ans.. but for three queries i'm unable to convence them so that can anybody give me the ans.

  • Mac momentarily freezes

    Hi all! I know there have been A LOT of similar issues to this over the web, and have tried many of the solutions available to no avail, so I thought by posting my specific issue, I might be able to get somewhere with the help of this very knoweldgab

  • To insert " NULL " in MS SQL Database

    Hi Friends, We have a scenario where a decimal value is sent from the source and it has to be updated in the MS SQL Database accordingly. If the data is sent for the decimal field, the decimal value gets updated. We need to insert " NULL " in the dat

  • Is it possible to burn a dual audio/data CD on an iMac running Leopard?

    I'd like to burn an audio CD with the MP3s included on the same disk. Can I / how would I do that on my iMac? thanks chris