Firefox constantly being unable to open after it has been closed and requires a machine restart

I have used all of the solutions published and consistently find that I close Firefox, go to reopen it and I get the two standard messages:
Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window.
Then:
Your Firefox profile cannot be loaded. It may be missing or inaccessible.
Task manager cannot close the application
the application is not visible in any session
I have followed all the posted solutions
I have uninstalled Firefox, shut down, rebooted. shut down again, rebooted, then downloaded a fresh copy of Firefox, run updates, got the messages that says it is fully up to date, and I am still encountering the problem.
After three days of tackling the issue and countless hours, I'm ready to move to another browser, but do not want to.

Typically when we see the 'Firefox Process' refusing to close the issue is with a misbehaving plugin, add-on, or toolbar component. I will post a link to the Mozilla Knowledge Base about creating a test profile:
https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles
Follow the instructions on that page to create a brand new profile for your browser, we will use this to confirm the source of the issues you are having. Use this new profile to browse briefly, then close Firefox and confirm if the issue is still giving you trouble. With the new profile the Firefox Process should end without any issues.
If this new profile is not having issues, then your problem is most likely with one or more plugins or add-ons installed on your original user profile. If you find that the new profile has fixed your issues, then you can follow the steps labelled under "Removing a profile" to delete the files that were causing issues with your browser. Removing a profile can permanently delete files, so make sure to confirm that the new profile has solved all of your issues before removing a previous profile.

Similar Messages

  • Firefox 4 download does not recognize previous version has been removed and tells me to restart to complete removal of said version. This has been going on though several attempts to load version 4

    The question is self explanatory

    Choose one or both options:
    * Manually delete the previous install folder before installing new version
    * Choose a different directory on install (e.g. c:\Program Files\2nd Mozilla Firefox)

  • It is remebering login info even after it has been deleted and cookies removed.

    The newest version of Firefox is remembering login information even after I have removed it and all associated cookies that I can find from every known location. How do I stop it from doing this.?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.

  • How do I keep file menu open after CheckBox has been selected?

    The following represents a written code for a menu with checkboxes. I would like the menu to stay open after a check box has been selected. Does anyone have a suggested modification for this to occur?
    Thanks,
    JR
    public class NewJFrame extends javax.swing.JFrame {
    /** Creates new form NewJFrame */
    public NewJFrame() {
    initComponents();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">
    private void initComponents() {
    jMenuBar1 = new javax.swing.JMenuBar();
    jMenu1 = new javax.swing.JMenu();
    jCheckBoxMenuItem1 = new javax.swing.JCheckBoxMenuItem();
    jCheckBoxMenuItem2 = new javax.swing.JCheckBoxMenuItem();
    jCheckBoxMenuItem3 = new javax.swing.JCheckBoxMenuItem();
    jMenu2 = new javax.swing.JMenu();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jMenu1.setText("File");
    jCheckBoxMenuItem1.setSelected(true);
    jCheckBoxMenuItem1.setText("jCheckBoxMenuItem1");
    jMenu1.add(jCheckBoxMenuItem1);
    jCheckBoxMenuItem2.setSelected(true);
    jCheckBoxMenuItem2.setText("jCheckBoxMenuItem2");
    jMenu1.add(jCheckBoxMenuItem2);
    jCheckBoxMenuItem3.setSelected(true);
    jCheckBoxMenuItem3.setText("jCheckBoxMenuItem3");
    jMenu1.add(jCheckBoxMenuItem3);
    jMenuBar1.add(jMenu1);
    jMenu2.setText("Edit");
    jMenuBar1.add(jMenu2);
    setJMenuBar(jMenuBar1);
    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGap(0, 400, Short.MAX_VALUE)
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGap(0, 279, Short.MAX_VALUE)
    pack();
    }// </editor-fold>
    * @param args the command line arguments
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new NewJFrame().setVisible(true);
    // Variables declaration - do not modify
    private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem1;
    private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem2;
    private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem3;
    private javax.swing.JMenu jMenu1;
    private javax.swing.JMenu jMenu2;
    private javax.swing.JMenuBar jMenuBar1;
    // End of variables declaration
    }

    Sorry Jack.
    Here is the code so that it appears more readable whenever it gets moved.
    public class NewJFrame extends javax.swing.JFrame {
        /** Creates new form NewJFrame */
        public NewJFrame() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jMenuBar1 = new javax.swing.JMenuBar();
            jMenu1 = new javax.swing.JMenu();
            jCheckBoxMenuItem1 = new javax.swing.JCheckBoxMenuItem();
            jCheckBoxMenuItem2 = new javax.swing.JCheckBoxMenuItem();
            jCheckBoxMenuItem3 = new javax.swing.JCheckBoxMenuItem();
            jMenu2 = new javax.swing.JMenu();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jMenu1.setText("File");
            jCheckBoxMenuItem1.setSelected(true);
            jCheckBoxMenuItem1.setText("jCheckBoxMenuItem1");
            jMenu1.add(jCheckBoxMenuItem1);
            jCheckBoxMenuItem2.setSelected(true);
            jCheckBoxMenuItem2.setText("jCheckBoxMenuItem2");
            jMenu1.add(jCheckBoxMenuItem2);
            jCheckBoxMenuItem3.setSelected(true);
            jCheckBoxMenuItem3.setText("jCheckBoxMenuItem3");
            jMenu1.add(jCheckBoxMenuItem3);
            jMenuBar1.add(jMenu1);
            jMenu2.setText("Edit");
            jMenuBar1.add(jMenu2);
            setJMenuBar(jMenuBar1);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 400, Short.MAX_VALUE)
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 279, Short.MAX_VALUE)
            pack();
        }// </editor-fold>
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrame().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem1;
        private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem2;
        private javax.swing.JCheckBoxMenuItem jCheckBoxMenuItem3;
        private javax.swing.JMenu jMenu1;
        private javax.swing.JMenu jMenu2;
        private javax.swing.JMenuBar jMenuBar1;
        // End of variables declaration
    }

  • Oracle.exe keeps locking a file after connection has been closed.

    Hi,
    I've written a windows service in .net that monitors a directory for new uploaded files that need to be synchronized with the database. When it detects a new file it moves the file to a another directory from which oracle can reach the file. When the file is moved. I open a connection with the database that performs a select * ... on the external table which reads the file. This all works like a charm and afterwards i dispose of the connection.
    Then i try to move the file again to another directory because it has been processed, but then i got an System.IO.IOException because the file is locked by a process. When i check by which process it is oracle.exe and the lock stays untill i terminate my service. When i debug the service i double checked and the connection state is closed before i try to move it again. For some reason oracle.exe locks the file untill i kill the service that opened the connection.
    If i need to give more specific information please ask, any help would be greatly appreciated.
    Pieter

    Do you see the same behavior is you select * from sqlplus instead of the odp app, but don't disconnect the sqlplus session?
    ODP has pooling on by default, so even though you close and dispose the connection, the underlying hard connection stays open.
    I dont know if there's a way to unlock the file without disconnecting which may be the ideal solution, but if not you could probably just disable connection pooling (set pooling=false in the connect string) to get around it.
    Hope it helps,
    Greg

  • Is it possible to keep Firefox open after all windows have closed (and to additionally open a new window when starting another Firefox process)?

    Yes, yes, I know, it's not good to keep applications open when they aren't designed to be. I'm sure Firefox has some memory leaks and this is doing more harm than good, but...
    My computer isn't the greatest out there, and to increase the usability of my Firefox browser it would be nice to keep the firefox.exe process open, even after closing all windows. I know Firefox doesn't totally close if there is at least one Firefox-related window open, but having to open X popup window seems a bit extreme to get this effect.
    Additionally, to allow another window to be opened, it would be cool for the "OH NO FIREFOX IS STILL OPEN" prompts to be replaced with just attempting to open a new window, if this feature is enabled.
    So, if it exists already, is there a config variable for it, and if it doesn't exist, is it possible to perform somehow? I'm not afraid to get my hands dirty if it comes to it; I'd really like to get this happening.
    I'm running Windows 7 Home, if it matters. (I'd rather be running another OS, but this is neither the time nor place...)

    LINK: https://addons.mozilla.org/en-US/firefox/addon/minimizetotray-revived/

  • What is causing my usage to increase after EVERYTHING has been disabled and shut off?  I reset my stats and sat in the same spot on wifi over last two hours and watched my usage go up

    data usage increases on wifi

    Hi there sambranoronnie,
    It sounds like you are seeing lots of cellular data being used when it should be using the Wi-Fi connection for data. I would use these troubleshooting steps from the following article to help you resolve the issue here:
    iPhone cellular data connection issues
    Toggle airplane mode: Tap Settings, turn airplane mode on, wait three seconds, and then turn off again.
    Restart your iPhone.
    Make sure that your software is up to date:
    Check for a Carrier Settings Update: Tap Settings > General > About.
    Check for an iOS Software Update: Tap Settings > General > Software Update.
    Some updates may require a Wi-Fi connection.
    Remove the SIM Card and reinsert it. Allow the iPhone to acquire the network again.
    If your SIM card has SIM PIN enabled, try turning it off: Tap Settings > Phone > SIM PIN.
    Try another location. If a different location works, but the original location still doesn't, contact your carrier to report the issue.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Resetting network settings on your device will erase all current saved settings, including Wi-Fi passwords, preferred networks, and VPN settings.
    Restore the iPhone as new.
    If none of the above steps resolves the issue, contact your carrier, make an appointment at an Apple Retail Store, or contact AppleCare.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • HT201210 how can i enable my device after it has been disabled and itunes wont connect to it?

    itunes wont connect to my device because it has a passode set. but i can not disable the passcode because my device is disabled. what can i do about it?

    Put iPhone into Recovery Mode. Open iTunes on computer, connect iPhone to computer with USB cable, hold both home and power buttons for about 20 seconds until iTunes recognizes iPhone in Recovery Mode. Click the Restore button of iTunes.

  • Action: Remove original file after it has been closed

    Hello. Is there any way to make Photoshop delete (or move to Recycle Bin, doesn't matter) a file in an Action?
    Basically at the moment I manually open a picture, then I activate my Action which does a bunch of automated things, saves a .png copy, closes the file. I would like my Action to also remove the original file. Is it possible?
    (I cannot use batch processing because the picture names do not follow a logical pattern, therefore I still wish to open the files myself.)
    Thank you.

    I think this needs a Script.
    Edit: But I doubt the wisdom of removing the original image and only keeping the edited data.

  • Can my parent Flash detect a window which was open from inside has been closed?

    Hello everyone,
    I have a Flash animation which at one point opens a New
    Windows and plays an external FLV file. I would like to be able to
    continue with the animation once the new movie window is closed.
    So, I would like to know if there is a way for flash to
    detect when the user has left the New Window or closed the window?
    Khoramdin

    Hi,
    If you accidentally closed the tabs there is one way to recover the website or pages you visit. Just hold CTRL+H on your keyboard and look for its date and find the website you visited.
    CTRL+H is a keyboard hot key to access the history pane.
    I hope this helps.
    Thank you!

  • Can videos be retrived after it has been deleted and factory reseted

    is there such thing as retrieving videos software after you have deleted and restored your ipod back to factory settings

    Maybe from the restored iPod via
    How to perform iPad recovery for photos, videos
    Wondershare Dr.Fone for iOS: iPhone Data Recovery - Wondershare Official     
    http://www.amacsoft.com/ipod-data-recovery.html
    iPod recovery software to restore lost music files      

  • Airport takes forever to find my router only after lid has been closed

    My macbook only started having this problem about a month ago. Whenever I close the laptop and it goes to sleep, then open it, it takes a few minutes for it to go from "Searching" to "Scanning" to actually choosing my network, and even then it doesn't always go to my preferred network automatically. It didn't used to do this and it seems to only happen when I close the laptop. When I leave the computer to go to sleep on its own without closing it, then hit a button to wake it again, the wifi network is still connected.
    This problem is really only annoying because of the time it takes to find my network. But I'm also curious because it never used to do this and I'm not sure why it's doing it only on my computer. My girlfriend's older iBook G4 finds a network in about 1 second.
    does anyone know why this might be happening and what I could do to fix it?
    Thanks.

    Try this:
    1) Go to /Library/Preferences/SystemConfiguration and delete com.apple.airport.preferences.plist. You will need admin privileges to do this.
    2) Start System Preferences/Network > Airport
    - Click on Advanced, and AirPort tab
    - Remove ALL the names in the Preferred Networks list (even the one for the network you use)
    - Click on OK
    - Now add the network you usually use by clicking on + and (re) entering its details (including password).
    - Click on OK and exit System Preferences
    Good luck
    Bob

  • Can't connect to Time Capsule after MacBook has been closed

    Hey guys,
    While ago I bought a 2TB Time Capsule to back-up my movies and music to, because my MacBook Air only has a small SSD.
    It worked fine for a while but now I'm experiencing some problems. Everytime I close my MacBook and open it again, it can't connect to the Time Capsule anymore. I have to reboot the macbook and then it works again. Any idea how I can fix this? I also connected my iMac in the other room to it but I don't think that should be the problem.
    Greets and thanks

    Give this a try:
    1. Start AirPort Utility, then let it remain open.  You can hide it but do not quit, 
    2. System Preferences>Energy Saver>Power Adapter>uncheck "Wake for access".
    Any improvement?

  • Is there a way to retrieve original iPhone photo after it has been edited and saved?

    I cropped and saved a photo, not realizing the original would be deleted.  Is there any way to retrieve the original?

    The find my iphone app is not needed and has nothing to do with finding the iphone on which it is installed.  The app simply allows you to find your other devices from the iphone -  not find the iphone it is on.
    Find my iphone is a feature, no app required.  You do have to set it up on the iphone itself.  If you did not , then you cannot track it.
    The serial number is of no use in locating an iphone.

  • HT201441 Hi, what if I don't know who had the device before.. I am working in a company, where we have a huge amount of iPhones and people come and go. When they leave the company, they turn in there phone after it has been erased and then that is it.

    Now I have a stack of Iphones that I can't use and I don't have a track record of who had them.??
    From a company point of view, it is not very smooth.

    If you haven't kept records of who had what phone, or required the user to wipe the phone properly before returning it (maybe time to update your company policies), you'll have to contact Apple Support directly and provide proof of ownership for these devices.
    Although there is no published process for getting devices unlocked, there have been reports that Apple can unlock corporate owned devices in situations such as yours, when device ownership is able to be proved.
    In future, when someone returns a phone, make sure they go to Settings > General > Reset > Erase all content and settings and enter their password for the process to complete. Then you'll have no problems.

Maybe you are looking for

  • Can I use one HD for 2 computer for time machine?

    I have an imac and macbook. I bought a new 500G external harddisk for time machine.. can I share the harddisk between 2 computer? Or I have to get 2 HD for 2 computer?

  • Itunes 10.6.0.40 Stops Working

    I have been having trouble accessing ITunes since Thursday March 15th.  I open ITunes and it starts to run Match and download podcasts and usually crashes within a minute.  A couple times I have stopped Match from running and it has not crashed, but

  • To check the Free item check box in PO number

    Hi All, In the Purchase Order at line item level we have the check box Free item to make Material qty as 0. Here my requirement is, to check the check box automatically when the order is created from ME58 transaction for particular vendor. When i che

  • 648 Max booting problem

    Hi all, I just installed my new 648 Max / p4 / DDR PC3200 256MB hardware. Sadly it will not work. It hangs showing 4 Green LEDs. According to the manual it means; System booting, but nothing happens.  Nothing is written on the screen. I can see the C

  • Recommeded way to rebuild Indexes in EBS 11.5.10.2

    What is the recommended way to rebuild all the possible indexes for better performance in EBS 11.5.10.2? Is there any seeded script / concurrent program, that which could be made use of?