How do I restore my tabs and tab groups after an update to version 36.0?

I work with many tabs when I use Firefox. I keep them ordered in Tab Groups, which helps separate the different kids of work I do and interests I have. I have been using this environment for years. When I started my work today, Firefox updated to v36.0, and the following behaviour was noticed:
1. There is only one tab group when attempting to show Tab Groups in Panorama, as opposed to around a dozen;
2. Normally though the hidden tabs (the tabs in the same group as the startup group and not the default page) don't download content until clicked, the name of the page and icon, if available, will show on the tab. Presently, the tabs show "New Tab" and no icon. There appears, however, to be the number of tabs that exist across all Tab Groups but now are ghosts this one, default Tab Group. I'd have to add, though, I don't count the number of tabs, so I can't be exactly sure. When clicked, there is just a blank page. So it is odd that Firefox knows they are there but cannot simply attach the address to it.
I have tried to restore the following files from my Windows Home Server backup to the AppData\Roaming\Mozilla\Firefox\Profiles\<gobbletygook>.default folder:
1. In the sessionstore-backups folder, I replaced the previous.js, recovery.bak and recovery.js files (not any of the upgrade~) with files from yesterday and from two days before.
When that didn't do anything, I replaced
2. sessionCheckpoints.json
I didn't see any file with a recent date that appeared to be one that I should restore. I should add that I do see hidden files. I thought about restoring the whole lot, but wasn't sure how this would affect the program on v36.0 and the profile files on 35.0.1.
I have deadlines this week and need to immediately restore my environment in order to make those deadlines. I have no list of addresses to my Web pages to work in IE or other. Any help would be very much appreciated.
On a second note, I had been wondering recently whether this tab group environment is a suitable way to maintain my work environment. Occasionally, when opening Panorama, I would get an error saying a script is taking too long, but if I clicked Continue, it would display the groups in a few seconds. I had considered putting all of it in Bookmarks though it would be tedious and more difficult to access and open multiple tabs. In the beginning, I tried Tab Groups thinking it was a simple matter of maintaining a table of addresses (in tabs) with a tab group ID or name. How could that go wrong? Well, it has, so it is obviously more complicated than that, and I didn't realise that upgrades would affect personal data. Should I abondon using tab groups?

With the help of information from user, ptressel, in [https://support.mozilla.org/en-US/questions/1032154#answer-673322 a post here about the existence of sessionstore.js when version 33 was released], I was able to easily recover my tabs and tab groups as follows:
# close Firefox and, perhaps, allow a few seconds (30s?) for any final closing of files;
# check to see if you have a sessionstore.js file in your profile folder, named like the one I documented in my original post above;
# if it is not timestamped prior to the discovery of your problem, open the sessionstore-backups folder;
# check if the recovery.js file is suitably timestamped and, if not, the recovery.bak.
# At this point, you are likely to find that none of them are prior to your problem occuring. If so, open your backups of this folder and go through steps 2-4 to find a file prior to your problem occuring.
# When you find a file, copy it to the root of your current profile folder and name it, "sessionstore.js"
# Open Firefox. Mine opened up as desired.
This is a Windows solution. Sorry I can't comment on other platforms, but I'd bet that as this is just a file copy and renaming, it is likely the same.
For Windows users, you may find you need to sign out and login as an administrator in order to access the backups. You need not logoff your standard account, but do have Firefox closed as described above.
Hope that helps.

Similar Messages

  • How can i restore pics, contacts and messages? lost all at ios5.1.1

    can anyont tell me how to get my pics, contacts and messages back after ive updated to ios5.1.1, please

    ant.uk wrote:
    sorry, restoring from last backup?
    This is covered in the manual that I linked for you.
    You can also read about it here:
    Backing up, updating, and restoring iPad, iPod touch, and iPhone software

  • How to restore Lost App Tabs and Tab Groups

    I make a lot of use of App tabs and Tab Groups. Today at startup of FireFox it showed only 1 blank tab with the default FireFox startup page. As far as I know there wasn't anny update recently.
    I have lost session restore before but then FireFox start page showed me the option te restore it, this isn't the case now. Also the restore session button in the menu is grayed out.
    Is there anny way to restore my tabs?
    Thanks in advance.
    I'm using FF 5 under Windows Vista.

    As well as having had this problem a couple of times on different machines, both immediately after upgrades, I also use the synch capability so that tab groups from more than one machine can be accessed from any of the others - a really useful capability. It's really frustrating to have lost everything and have to try to recreate things from history. It occurs to me that the contents of my sets of groups are stored on a synch server somewhere so they ought to be recoverable from the hopefully, periodic automatic server backups - only problem is, how to access them? unlikely to be possible at this stage!
    In this context, a useful enhancement would be a capability to make user-created named backups of all current groups of tabs which could later be restored at will; any upgrade process should also automatically create such a backup for the user so that the problem of lost groups of tabs would be solved. In addition it would give users additional flexibility to create groups of groups - accessed by the save/restore mechanism - say for development, personal or social or whatever.

  • How to place content between header and tabs?????

    i have header part which has to be constant through out the portal but below that i have 3 links
    like I AM employee,employer,broker..
    which has to be shown only in home page above tabs..
    how can i achieve this..
    how to place content between header and tabs..:(kindly help..

    Hi Samiran
    Try these approaches and see if that works.
    1. In the Header Section, you header footer shell and add a Header Portlet. This Header Portlet associated JSP file will have all static content in the top section. In the bottom section, add these 3 links say to right hand corner. Show these links only based on some request property like isHome. Now for the main book having Home and other page associate a BackingFile. Within this backing file in the lifecycle methods like preRender or handlePostBack, get instance of BookManager and all the pages and see which page is Active. For that active page check its page definition label which will be always unique. IF the page def label is like home_page_def (this is page def label you give for home page), then set the key value in the request property like isHome=true. By only doubt is after Book backingfile is triggered, the header has to be reloaded, because only then it can pick up the request attributes.
    2. Create a brand new portlet like HomePageLinks portlet. Make its Title Property Not Visible, and other user interface properties like NoBorder, NoTheme etc. The associated JSP will have the 3 links you mentioned right aligned. You can use css styles to make it right etc. Now drop this portlet in the Header Shell area. You already have HeaderPortlet in the top, below that you will have this HomePageLinks portlet. Now associate a backing file for this Portlet to show, only if the Books current active page is Home page by comparing the def label etc as mentioned above.
    In both scenarios, only concern is when we click on different Pages, the entire portal has to be rendered right from the Top Header. Only then the backing file will set the key, and the HomePageLinks portlet can show or hide accordingly.
    Try firing an Event when the Home page is clicked. This listener for this Event can be the HomePageLinks Portlet. I guess Event mechanism should work irrespective of where the portlet is placed. In the event listner, see if you can show/hide this portlet.
    The only challenge is Header section needs to reloaded everytime you click on a Tab.
    Start putting some backing files and System.out.printlns to see if the Header section gets reloaded on click on any Tabs.
    These are just my thoughts over the top of my head. Other forum users can have better alternatives or a different version of above approaches.
    Thanks
    Ravi Jegga

  • Windows updates removes all tabs and tab groups so I have to regularly do a system restore to get them back.

    When there is an automatic update from Windows or Microsoft Security Essentials, it regularly has removed all my tabs and tab groups. A very frustrating occurance so I have to do a system restore to get all these back. Any solutions to this issue?

    After your computer restarts, you should be able to choose '''[[Session Restore|"Restore Previous Session" from Firefox's History menu]]''' to restore all your tabs and groups from last time.
    For this to work, Firefox must be set to remember history in the [[Options window - Privacy panel]].

  • Ffox crashed & I accidntlly hit open new sesson instead of restore tabs. Can I get back my tabs and tab groups?

    ffox crashed, when the window came up to choose tabs to close, and then restore the remaining tabs, i accidently hit start new session so I lost all tabs and tab groups when the new firefox window opened. In disbelief that this had actually happened, I then closed this new firefox window, and then started firefox again in hopes that it was some sort of fluke, but again it was a new session without any of my old tabs or groups.

    Uh oh, you closed and re-opened Firefox. When you start up, Firefox saves your previous session tabs from sessionstore.js to sessionstore.bak, but it's only there until you start up Firefox again, when the backup is replaced. So I don't hold out much hope...
    But you could take a look here:
    Help > Troubleshooting Information > "Show Folder" button
    This will open your currently active Firefox settings folder (AKA Profile folder). If you look for sessionstore files, you should see at least sessionstore.js (current session) and sessionstore.bak (previous session). You may also see other files with numbers appended to the name.
    Copy all of today's files to a safe location (e.g., Documents folder). The strategy is to work through them to see whether they contain anything useful.
    Keeping your profile folder open, switch over and exit Firefox. Then delete sessionstore.js and rename sessionstore.bak to sessionstore.js. After restarting Firefox, can you restore the earlier session (using either History > Restore Previous Session, or the button on the built-in Firefox home page)?
    If that isn't the correct one, did you find any other sessionstore files that might be a bit older? If so, repeat the process. If not, unfortunately, it's gone, and you'll have to use your memory or Firefox History (e.g., Ctrl+Shift+h) to reconstruct the missing session.
    There is an extension named Session Manager that lets you save more than just the one previous session. If you can't live without your list of tabs, you might want to look into it: [https://addons.mozilla.org/firefox/addon/session-manager/].

  • Firefox loses my tabs and tab groups

    I closed down my system normally last night. Firefox closed down. When I started up Firefox this morning all of my tabs and tab groups had gone - AGAIN!
    Firefox has done this to me several times and I have never been able to recover my tabs and groups by any of the methods described previously. I am currently using FF 29.0.1 on Windows 7 Ultimate. This loss of tabs and groups has happened in exactly this way on several previous occasions over quite a few years with different versions of FF.
    My history is still present.
    Leading up to this I have noticed that FF 29.0.1 was not faithfully preserving tab states. There have been several tabs where, during a session, I have changed the URL that the tab was pointing to only to find that FF has preserved the original URL for that tab when I have restarted it the next morning.
    I have come to suspect that what is happening is:
    1) FF saves the tab and groups state in sessionstate.js on close down (and at intervals while running). It creates sessionstore.js with a syntax error in it.
    2) On start up FF loads sessionstore.js, hits a syntax error, (silently) decides that it can't use that store and creates a new one, thereby losing all information in the previous sessionstore.js.
    When I save the new sessionstore.js as something else, rename sessionstore.bak to sessionstore.bak.js and then double click it to launch it I get an error dialog:
    Line: 1
    Char: 11
    Error: Expected ';'
    Code: 800A03Ec
    Source: Microsoft JScript compilation error.
    Here are the first few characters of the file:
    {"windows":[],"selectedWindow":0,"_closedWindows":[{"tabs":[{"entries":[{"url":"http://php.net/",
    The frustrating thing is that I (think I) can see data in there relating to my tabs and groups. Because the JS is minified it's almost impossible to extract the data structures in a meaningful way. Because the file is so large (>2.9MB) and the syntax error my code editors can't make any sense of prettifying it so it's very difficult to pull apart.
    I question the use of JS for preserving data in this way. There may be performance reasons for using JS. Wouldn't it be better to use something like XML? At least us poor humans would have a chance of eyeballing the data and doing a manual recovery if necessary. Sod it! We could even write a program to load up the tabs ad groups from the XML!
    I have wondered about using Firefox Sync for all of my systems. My worry is that a problem on one machine will blow away my settings on all of them. Does anyone have any experience with respect to FF Sync in this respect?
    I've preserved copies of my sessionstate.bak (along with the previous one) in the hope that someone may have a way of recovering the tab and group information contained in there.
    If anyone has any suggestions about recovering the tab and group information I'd be really glad to hear them. I can't say loudly enough how frustrating it is to keep losing the tabs and groups. Each time it happens it blows away the context of the several jobs that I'm doing at any one time.
    Oh. And I'm writing this message using Chrome as my browser.

    What have you tried for session recovery so far?
    3MB is quite large and may well indicate some corruption. Still, since as you can see it is largely text, you often can extract the URLs. Doing that by hand would be arduous...
    I assume you have seen the following links in other threads mentioning data mining techniques to rescue the URLs from the sessionstore.js or sessionstore.bak file:
    * Using Firefox's Browser Console (formerly known as Error Console): https://support.mozilla.org/questions/969046#answer-471950
    * Using Firefox developer tool "Scratchpad": http://forums.mozillazine.org/viewtopic.php?f=38&t=622036&start=60&p=12098147#p12098147
    * Using a third party website: https://firefox-session-restore.herokuapp.com/
    Do any of those work on your file(s)?

  • Closed Two Separate Instances of Firefox - Open Tabs and All Groups Lost

    I had two instances of Firefox 16.0.2 open and closed both with the "X" box at the top of the window and shut down windows. When I opened Windows XP this morning I came up with only one of the two Firefox sessions with the tabs restored and lost all the groups I had created over the last year.
    The original groups are important to me, the tabs less so.
    I was able to recover previous versions of sessionstore.js from the profile directory for Firefox and have the several days prior of them.
    I saw in other postings of similar nature that the information is in the sessionstore.bak or a previous deleted sessionstore.js. I've attempted to figure out the procedure for running scripts but I don't think I'm getting it. When I open sessionstore.bak in notepad I can see the links that were in the groups that I'd like back.
    My questions are:
    1). Can & how do I restore the groups? (I'm not understanding the procedures I saw in: http://forums.mozillazine.org/viewtopic.php?p=10768811&start=45)
    2). Are the tabs gone? How do I restore them?
    3). Is having two open Firefox windows a no-no for keeping groups and tabs remembered?
    4). How do you backup groups so if things go south you can recover easily?
    5). How many tabs can you safely have open in Firefox?
    6). Any other hints or procedures I should know about.
    Thanks!
    Ron

    Did you check if there are entries in History > Recently Closed Windows ?
    App (pinned) tabs and Tab Groups (Panorama) are stored as part of the session data in the sessionstore.js file in the Firefox profile folder, so if you have a backup copy of a sessionstore.js that has those tabs then you need to check that.
    *http://kb.mozillazine.org/sessionstore.js
    If you close a window via the close X on the title bar then you only close that window and all pinned tabs and tab groups that you created in that window will be gone (each window has their own tab groups and pinned tabs).
    Use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar to make sure that you do not lose tab groups.

  • How can I restore App Store and apps

    How can I restore App Store and my purchased apps

    If you mean that you can't find the App Store app on any of your homescreens or app folders, and you can't find it via the spotlight search screen (swipe your first home screen to the right), then is it hidden by Settings > General > Restrictions > Installing Apps being set 'off' ? If it is hidden then unhide it and the app should then appear on your iPad's homescreen, and you can then re-download your apps via the Purchased tab in it.

  • How can I restore move function and type tool which abruptly became balky with Elements 8 with OS10.10.2?

    How can I restore move function and type tool which abruptly became balky with Elements 8 with OS10.10.2?

    Follow-up: I'm worried about performing any actions without input, because I don't want to back myself into a corner.
    Will resetting Firefox fix the problem (instead of creating a new places database)? https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems
    According to this article, a reset will keep browsing history, which should allow me to access my lost tabs IF it will also fix my database problem.

  • What happened to my tabs and tab groups when I synced to a new computer?

    I have spent the morning trying to sync Firefox. On my previous computer, I was running FF31, but not as a clean install--as an upgrade from FF28. In the Sync screen, I saw my email address and recovery key, so I thought I was good to go.
    Turns out that that wasn't the case, and I needed to set up a new Sync account.
    Here are the steps I took to get my data back:
    1) I uninstalled FF31, reverted to 28, used my email address and recovery key, and got my information back.
    2) Then I updated to FF31.
    3) In FF31, I unlinked my computer, created a new Sync account, and logged in to sync my data.
    However, I was unable to access my tab groups. And when I upgraded to FF31, my tab groups still weren't back.
    I tried looking in "Tabs from Other Devices", and there were no other devices listed.
    How can I get my tabs and tab groups back? I had literally dozens of hours of work-related research saved in these tabs. I have so many visited sites in my history that there's no way I'd be able to recreate all of them.
    Please help--I'm desperate. I can't lose all of those tabs.

    Hello,
    '''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 turns off some settings, disables most 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, and you need to figure out which one. Please follow 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.

  • I click the firefox icon more than one times during several seconds(in order to start firefox),and then my tabs and tab groups will lost!

    i use firefox30 on windows.
    and i have more than 50 tabs.
    sometimes firefox starts very slowly,so i click it many times and then when firefox shown,my tabs and tab group all gone!

    HI hirenloong,
    I am sorry to hear that Firefox is slow on starting up. It sounds like you "Restore tabs from last time" and that there are 50 or more? [https://support.mozilla.org/en-US/kb/firefox-takes-long-time-start-up]
    Please make sure that after the update that the antivirus is allowing Firefox to make the connections to those old tabs. [http://kb.mozillazine.org/Firewalls]
    Please post back with your troubleshooting results.

  • I bought a second hand ipad 4 4g the first user forgot the apple id and password, how can i restore the ipad and create a new id and password for it?

    i bought a second hand ipad 4 4g the first user forgot the apple id and password, how can i restore the ipad and create a new id and password for it?

    You cannot get around Activation Lock without the oringinal owner disassociating the iPad from their account.
    See the Activation Lock FAQ for what you and they need to know.

  • How can I restore iPhoto titles and captions to iPhoto JPEGs sent to, and opened in, Aperture 3?

    How can I restore iPhoto titles and captions to iPhoto JPEGs sent to, and opened in, Aperture 3?

    Thank you very much, Kirby.  Your suggestion was exactly what I needed.  It proved to be a big help even to my One-to-One Aperture trainer at the Naperville IL Apple store.  My slideshow text, caption, and music attributes also were carried over intact to the new Aperture 3 environment.  - A.Z.

  • Tabs and tab groups are lost

    Closing Firefox and restarting it, invariably all my tab groups seem to have lost their tabs. Reopening hibernated groups or closed groups (using tab group manager add-on) will not help.
    This did not happen on my previous install but since having upgraded to Kubuntu 14.04 and Firefox 29 (to be precise Firefox for Canonical 1.0) I keep losing my tabs and tab groups.
    Do not know what mistake I am making.

    Thanks,
    Problem solved

Maybe you are looking for

  • Optical Audio to Regular Speakers

    Hello, I am planning to purchase a 3rd Gen Apple TV and I want to use it with my Acer monitor (20.1") over DVI with a HDMI-DVI adaptor but if I use that there will be no sound (My monitor has no speakers anyway), So my question is this: How to use th

  • Login changes from WLCS 3.2 vs WLCS 3.5

    I am upgrading my current prototype using WLCS3.2 to 3.5. I use the exampleportal demo and plug in a few JSP's from my web application. In 3.2, after you enter your login information the request object that all portlets have access to contains 3 para

  • Free hand SQL

    Hi I want to create a report without using the semantic layer. Can I build a request that based on SQL that I write (like in BOs' free hand SQL)? I'll be happy to have the documentation Thanks Moshe

  • Upgrading from Site Studio R3 to R4

    We're upgrading to the current version of Site Studio R4 from R3. We've installed Site Studio R4 server components on the server in a separate test environment. BUT - if we were to install it on our development server where the content for our existi

  • A music track I purchased only partially downloaded. I am unable to re-download it again as there is no option, so cannot get the full track I have purchased. Any ideas?

    I purchased an 8 minute music track on itunes which only downloaded about 22 seconds. It does not give me the option to re-download what I purchased on itunes, only to play it - so it only re-plays the partially downloaded track. I know the full trac