When close firefox and reopen, it open all the last webs and popups visited today

I use firefox to work. I'm web developer and in the firefox have instlalled 3 complements and 8 plugs.
When use Firefox, and in different tabs open: GMAIL, web normaly, other web, google, conection with my server plesk, ...
Normaly use 6 to 8 tabs in differents sites, some moments firefox run very slow, at the moment, in one web, it stop, dont run and response.
Than, I close firefox, pause 10 seconds to firefox service stop and reopen, it open all the last webs and popups visited today.
Sometimes, it even opens popups that had been closed for some time ago, sometimes it crashes.
In the same day, it success two or three times.

It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
* Help > Troubleshooting Information > Profile Directory: Open Containing Folder
* http://kb.mozillazine.org/Profile_folder_-_Firefox
If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
See also:
* [1] http://kb.mozillazine.org/Session_Restore
* [2] http://kb.mozillazine.org/sessionstore.js
See also:
*Tools > Options > General > Startup: "When Firefox Starts"

Similar Messages

  • After having shut down after installing updates, when I restarted and tried to open a word file, it started opening ALL the word docs and the only way I could stop it was by"force quit"  arted  and tried to open

    After having shut down after installing updates, when I restarted and tried to open a word doc, it started opening ALL the word docs and the only way I could stop it was by"force quit"  . This is REALLY annoying!!

    May be it is the Resume feature.
    System Preference > General > Number of recent items
    Uncheck the box next to      "Restore windows when quitting and re-opening apps".
    Best.

  • HT4993 Everytime i plug my phone into itunes it says it cant connect because the phone is locked well i restored my phone twice and set a new passcode the last time and it still wont work . I even deleted itunes and reinstalled it , it dosent work . HELP

    Everytime i plug my phone into itunes it says it cant connect because the phone is locked well i restored my phone twice and set a new passcode the last time and it still wont work . I even deleted itunes and reinstalled it , it dosent work . HELP PLZ !!

    I had the same issue. I tried everything unchecking / rechecking, formatting Iphone and restoring from backup etc etc.
    In the end it was a simple issue which might of might not help you.
    A number of months ago I relocated by Itunes folder to a NAS drive. It appears when I did the last I tunes update Itunes set the destination path of the Itunes media to the default location, the result was Itunes couldn't install music,apps, video until I set the correct destination path.
    The bit that confused me was it was transferring some media. This was of course the media I had downloaded since the last Itunes update which had gone to the default location.
    I hope that makes sense and is off some help.

  • Safari always opens at the last web page viewed. How can I make google the default opening page?

    On my iphone 4, safari always opens at the last page viewed. Does anyone know how I can set it to always open at google?

    You can't but you can navigate to Google and add that to your homescreen as a shortcut.  Press the arrow on the bottom.

  • Quicktime opening all the last files

    When i double-click some file that i want to open with quicktime, it opens all ealier files. how can i switch it off so it will open the only one i want to watch ?

    When i double-click some file that i want to open with quicktime, it opens all ealier files.
    That is because you are not closing the open players before quitting the QT Player application.
    how can i switch it off so it will open the only one i want to watch ?
    Check the "General" window in the System Preferences panel for the "Close windows when quitting an application" option. (However, be advised that this option affects all apps and not just the QT Player.) Or you can either close open player windows individually or hold down the "Option" key when you quit the QT Player app to automatically close all open movie players before the app quits.

  • How can I capture and take screenshots of all the browser tabs and not only windows ?

    This class identifies all minimized windows and take a snapshot (screenshot) of them. I want to take screenshots also of all the broswer for example chrome tabs windows that are open but not in the front. Same idea that it get now the minimized windows but
    to get the screenshots of the broswer opened tabs ! What should I change in the WindowSnap class? Since both classes are a bit long I added them to pastebin.com
    What i'm doing now is to get all the minimized windows i mean all the the windows in the back if it's chrome browser windows or open tabs if it's program games other windows. This is what i'm doing in form1 constructor:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    for (int i = listBoxSnap.Items.Count - 1; i >= 0; i--)
    string tt = listBoxSnap.Items[i].ToString();
    if (tt.Contains(" ,"))
    listBoxSnap.Items.RemoveAt(i);
    listBoxSnap is just a regular listBox1 in my form1 designer.
    And this is the WindowSnap class code, it's a bit long code but it's all connected:
    I'm not sure what to show here from this class what is the most important part so i added all the class code to a link to pastebin.com:
    WindowSnap.cs
    What i'm calling/using in form1 constructor from this WindowSnap.cs class is the GetAllWaindows method:
    public static WindowSnapCollection GetAllWindows(bool minimized, bool specialCapturring)
    windowSnaps = new WindowSnapCollection();
    countMinimizedWindows = minimized;//set minimized flag capture
    useSpecialCapturing = specialCapturring;//set specialcapturing flag
    EnumWindowsCallbackHandler callback = new EnumWindowsCallbackHandler(EnumWindowsCallback);
    EnumWindows(callback, IntPtr.Zero);
    return new WindowSnapCollection(windowSnaps.ToArray(), true);
    EnumWindowsCallBackHandler is:
    private delegate bool EnumWindowsCallbackHandler(IntPtr hWnd, IntPtr lParam);
    EnumWindows is:
    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool EnumWindows(EnumWindowsCallbackHandler lpEnumFunc, IntPtr lParam);
    Then i have the class called WindowSnapCollection:
    WindowSnapCollection.cs
    The problem is in form1 constructor i'm getting only 23-24 windows in the listBox1. When i'm doing this two lines:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    I see in numitems about 30 windows and after filtering i'm getting 20 windows and i checked that's the correct number of opened minmizied windows i have in this example 20.
    Now what i want to do is somehow to get with all this windows in the listBox also all the opened tabs in chrome.
    For exmaple i have only 4 opened chrome windows. But in one of the chrome windows i have almost 40 tabs opened !
    I want somehow to add to the listBox all this opened tabs also as captured screenshots like i'm doing now with the windows.
    This is a screenshot of my program showing what i'm doing and what i get:
    So now i have 19 windows captured in the next refresh it will show 20.
    My question is if there is any way to capture also all the chrome opened tabs in all the windows if any opened tabs are opened at all ? Now i'm getting only the chrome opened windows captured screenshot. But i want to get also the chrome tabs captured screenshots.

    Hi Chocolade1972,
    Since this forum is discussing about Windows Forms general like winform controls, and your issue is related with Windows Desktop SDK, I will move this thread to the more related forum.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Hey i have a normal i phone 4 and have just done all the iTunes, macbook and iphone updates and i can not get the devices thing to come up in the tab on the left in iTunes. and i have done that itunes trouble shooting thing with no luck.. plz help

    i just cant get the devices thing to come up in the tab on the left. i am pretty sure everything is up to date and the phone is charging through the mac book usb port. i have also tried this link http://support.apple.com/kb/TS1591 that all the google searches take me to but it no help. i am not very good with computers so spastic easy language would be greatly appreciated, thanks in advance

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)
    In order to change your Apple ID or password for your iTunes account on your iOS device, you need to sign out from your iOS device first, then sign back in using your updated details. (Settings > store, scroll down and tap your ID)
    If you are using iMessages or FaceTime, you will also need to log out and into your ID there too.

  • Since upgrading to Lion, Safari always opens to the last web page opened regardless of the preference settings.

    Since the upgrade I cannot get Safari to open to the page selected in preferences.  I also find that all previously opened windows reopen when Safari is reopened.  How do I fix this?

    Open General preferences and uncheck the option to "Restore windows when quitting and re-opening apps."
    Applications will resume after restarts. If you wish you can change that behavior:
    It's the Resume feature of Lion:
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.

  • I have checked the warn me when closing firefox with multiple tabs open but the system does not warn me and closes all of the tabs?

    i have checked the box that says to warn me if i am closing firefox with more than one tab open but if i do close with more than one tab open it does not warn me?

    For a summary of what to do to get the old behaviour back see this post from [https://support.mozilla.com/en-US/questions/804339#answer-158823 Helper 7677]

  • Fox news does not load all the things on it in a lot of the boxes, like pictures andthings under news and faces.Have checked all the image settings and such....

    on fox news site JUST recently the picts and some text , like under faces and news and under categories like WATCH now, NOTHING appears....just satrted happening..have checked the settings to no avail...HELP

    notice the blank areas under the bullets

  • Why does safari load in to the last web page and not the set homepage

    I recently installed Lion 10.7.1.  In Safari, I have my preferences set at a preferred Homepage, however, each time I search the web at other sites, and after closing the web, and upon re-opening Safari, the last web page opens up and not my preferred Homepage. 

    I recently installed Lion 10.7.1
    Disable Resume...
    How To Disable Lion's 'Resume' Feature - MacRumors.com

  • When first loading, FIREFOX doesn't open all the way.

    When I first open FIREFOX, it doesn't open all the way. When I open another, FIREFOX

    Hi weaver15,
    You should try changing your home page to:
    about:home
    I think this is probably the page you are looking for. If you don't know how to change the home page, you should take a look at the Knowledge Base article [[How to set the home page]].
    Hopefully this helps

  • When I restart Firefox, my pinned tabs open to the page that I last viewed rather than the page that I originally pinned. For example, if I pinned to a local ne

    When I restart Firefox, my pinned tabs open to the last webpage that I viewed rather than the page that I originally pinned. For example, if I pinned to a local newspaper's website, navigate to espn while on the pinned tab and then close Firefox, the next time I open Firefox, the pinned tab goes to espn rather than the local newspaper's site.
    Additionally, the same thing happens if I am reading an article on the pinned tab. When reopening Firefox, the pinned tab goes to the last article viewed.

    Hi don.w,
    That is just the way that pinned tabs are designed. They are meant to be left on the page you want them left on e.g. a web mail account.
    If you want to pin a newspaper then I would pin the front page and then open any article you want to read in a new tab.
    Having said that there is an addon called [https://addons.mozilla.org/en-US/firefox/addon/tab-utilities/ Tab-utilities] which contains an option to automatically revert a pinned tab to the original URL.
    I hope that helps.
    --Edward

  • How do I stop Firefox from opening with the last site I was on when I closed instead of using my home page?

    whenever I open firefox after closing it down, it always opens with the last page I was on. I have the settings to point to a specific homepage and have it set to always open on the homepage, but it doesn't.

    I am having a similar problem, I'm using "Show my home page" on start-up but firefox decides to always open to the last page visited regardless. I also generally close Firefox using the red X or with alt+f4. This problem is especially annoying when the last page 'visited' is an annoying pop-up ad that wasn't been caught by the pop-up blocker.

  • When I open Adobe 9.0 Pro it opens all the files I saved on Friday

    When I open adobe it goes through all of the files I opened on Friday.  When it reachs 50 it freezes up and tells me it can't load more than 50 documents.  I have restarted my computer that didn't work.  I try clicking on a document while it is loading but the says not responding.
    Any ideas.
    Marcy

    tom van haesebroeck said:
    same problem here, since i installed the 9.2 update...
    when i launch acrobat 9.2 pro it opens all the last used pdf's and then it crashes!
    please help
    tom
    this seems to work:
    open acrobat by holding the shift key
    clear history
    close acrobat
    open acrobat again
    Thanks Tom for this!  I am glad I found this thread. 
    I installed Acrobat Pro 9 two weeks ago, and used it fine. 
    This morning, logged in, automatically started installing updates. 
    Then, opening a file in Acrobat, it opened the four I used yesterday.
    Some of them are pretty big, and when I tried to close then, it crashed. 
    I tried to delete history, and then open them. 
    But, following your advice, I:
    Opened Acrobat
    Deleted history
    Closed Acrobat
    Opened Acrobat
    Opened file in Acrobat
    Seems to be working okay now.  Thanks! 
    Still, seems to me that the latest update installment may have a bug. 

Maybe you are looking for

  • How to do a "printer friendly page"?

    Hello, I have searched a lot but I didn�t find a tutorial that work. I am using ASP Vbscript. Any help will be very appreciated. Thanks

  • MIDI CLOCK stopped working and I can't figur this one out.

    I have been sending MIDI clock to my Native Instruments Guitar Rig so I can sync the Loop Machine with Logic, everything was working pretty good till...??? I am not sure what I could have done to goof it up but now I get no MIDI signal out the port (

  • Bought Win 8 PRO upgrade, still can't use older programs!

    I bought a new Windows 8 computer and was told that if I wanted to use my older programs that were compatible with XP, Vista, etc., that I would have to upgrade to the Pro version of Win 8. I spent the extra $99.99 and the thing STILL WON'T LET ME RU

  • How to call bean funtion once page is loaded?

    Hi guys, I am doing a user activation page. I need to call a bean function once the page is loaded. For example, http://www.abc.com/activate.jsp?code=12345678 <c:if test="$"empty param.code"> <!-- call activate function a bean --> </c:if> public clas

  • Cannot find Adobe PSE 10 download

    I bought the download of Adobe Photoshop Elements 10 on November 23rd 2011. I have the serial number for it. Recently I uninnstalled it before installing the trial version of Adobe PSE 11.  I have uninstalled the trial of Adobe PSE 11 -it does not of