Can I paste a sessionstore.js from Firefox 27.0.1 (XP) into Firefox 28 (Ubuntu 12.04 LTS?

I saved my wife's tabs from Firefox 27.0.1 (XP) and installed Ubuntu 12.04 and Firefox 28. Now my life depends on my being able to restore her tabs. I am new to Ubuntu and I can't seem to find where sessionstore.js is located. I turned on hidden files, to no avail. I seem to be missing something.

Note Firefox's ''sessiorestore'' sytem tends to be slightly fragile. Try not to over rely on it. At least ensure any important open pages are bookmarked.
'''''Firefox sync''''' may help but that is also rather trouble prone. Firefox sync may improve in Firefox 29 with the new Firefox accounts, but personally I would not rely heavily on that either. Firefox sync may also scramble bookmarks so make sure you not only bookmark but also make manually backup your bookmarks.
* [[Restore bookmarks from backup or move them to another computer#w_manual-backup]]'''_manual-backup'''
*[[How do I set up Firefox Sync?]]
**[[How to update to the new Firefox Sync]]
As for the lifesaver, the easiest method is to open the profile from the option in the troubleshooting information page of a running Firefox. Then close Firefox and find the files to copy.
*[[Use the Troubleshooting Information page to help fix Firefox issues]]
** [[Profiles - Where Firefox stores your bookmarks, passwords and other user data#w_how-do-i-find-my-profile]]'''_how-do-i-find-my-profile'''
Note that Windows does not always display the .js extension filenames you may need to check the Windows options are set to display filename dot extensions.
* http://kb.mozillazine.org/Sessionstore.js

Similar Messages

  • I can't open mail on Hotmail from Firefox. I can from Safari. I can open the Hotmail account page and it is complete w/ my new messages, but when I go to open them I get this messeage..."Please refresh your browser window. When you access your Windows Liv

    I can't open mail on Hotmail from Firefox. I can from Safari. I can open the Hotmail account page and it is complete w/ my new messages, but when I go to open them I get this messeage..."Please refresh your browser window. When you access your Windows Live Hotmail account from more than one computer, we ask you to sign in again to help keep your account private and secure. " when I sign in again there is no change. in English
    == URL of affected sites ==
    http://http://sn135w.snt135.mail.live.com/default.aspx?n=2087215863
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    "Clear the Cache": Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    See http://kb.mozillazine.org/Clearing_the_cache and http://kb.mozillazine.org/Cookies

  • How can i connect my bookmarks links from Firefox, to favorites (location) start button then favorites?

    ''dupe of https://support.mozilla.org/en-US/questions/915455''
    How can i connect my bookmarks links from Firefox, to favorites (location) start button then favorites?

    *Plain old favorites: https://addons.mozilla.org/firefox/addon/plainoldfavorites/

  • How can I input read a line from a file and output it into the screen?

    How can I input read a line from a file and output it into the screen?
    If I have a file contains html code and I only want the URL, for example, www24.brinkster.com how can I read that into the buffer and write the output into the screen that using Java?
    Any help will be appreciate!
    ======START FILE default.html ========
    <html>
    <body>
    <br><br>
    <center>
    <font size=4 face=arial color=#336699>
    <b>Welcome to a DerekTran's Website!</b><br>
    Underconstructions.... <br>
    </font> </center>
    <font size=3 face=arial color=black> <br>
    Hello,<br>
    <br>
    I've been using the PWS to run the website on NT workstation 4.0. It was working
    fine. <br>
    The URL should be as below: <br>
    http://127.0.0.1/index.htm or http://localhost/index.htm
    <p>And suddently, it stops working, it can't find the connection. I tried to figure
    out what's going on, but still <font color="#FF0000">NO CLUES</font>. Does anyone
    know what's going on? Please see the link for more.... I believe that I setup
    everything correctly and the bugs still flying in the server.... <br>
    Thank you for your help.</P>
    </font>
    <p><font size=3 face=arial color=black>PeerWebServer.doc
    <br>
    <p><font size=3 face=arial color=black>CannotFindServer.doc
    <br>
    <p><font size=3 face=arial color=black>HOSTS file is not found
    <br>
    <p><font size=3 face=arial color=black>LMHOSTS file
    <br>
    <p><font size=3 face=arial color=black>How to Setup PWS on NT
    <BR>
    <p><font size=3 face=arial color=black>Issdmin doc</BR>
    Please be patient while the document is download....</font>
    <font size=3 face=arial color=black><br>If you have any ideas please drop me a
    few words at [email protected] </font><br>
    <br>
    <br>
    </p>
    <p><!--#include file="Hits.asp"--> </p>
    </body>
    </html>
    ========= END OF FILE ===============

    Hi!
    This is a possible solution to your problem.
    import java.io.*;
    class AddressExtractor {
         public static void main(String args[]) throws IOException{
              //retrieve the commandline parameters
              String fileName = "default.html";
              if (args.length != 0)      fileName =args[0];
               else {
                   System.out.println("Usage : java AddressExtractor <htmlfile>");
                   System.exit(0);
              BufferedReader in = new BufferedReader(new FileReader(new File(fileName)));
              StreamTokenizer st = new StreamTokenizer(in);
              st.lowerCaseMode(true);
              st.wordChars('/','/'); //include '/' chars as part of token
              st.wordChars(':',':'); //include ':' chars as part of token
              st.quoteChar('\"'); //set the " quote char
              int i;
              while (st.ttype != StreamTokenizer.TT_EOF) {
                   i = st.nextToken();
                   if (st.ttype == StreamTokenizer.TT_WORD) {          
                        if (st.sval.equals("href")) {               
                             i = st.nextToken(); //the next token (assumed) is the  '=' sign
                             i = st.nextToken(); //then after it is the href value.               
                             getURL(st.sval); //retrieve address
              in.close();
         static void getURL(String s) {     
              //Check string if it has http:// and truncate if it does
              if (s.indexOf("http://") >  -1) {
                   s = s.substring(s.indexOf("http://") + 7, s.length());
              //check if not mailto: do not print otherwise
              if (s.indexOf("mailto:") != -1) return;
              //printout anything after http:// and the next '/'
              //if no '/' then print all
                   if (s.indexOf('/') > -1) {
                        System.out.println(s.substring(0, s.indexOf('/')));
                   } else System.out.println(s);
    }Hope this helps. I used static methods instead of encapsulating everyting into a class.

  • Can you stitch digital TIFFs taken from all sides of the object into a 3D image in CS-6

    Can you stitch digital TIFFs taken from all sides of the object into a 3d image in CS-6

    It depends on the object. The mesh must have surfaces (texture names) for each side of that object. Then an image can be applied to each side.
    Photoshop currently lacks a way to select a side and give it a name.
    You may want to try a program like blender to assign surfaces to a mesh. It is a very robust and daunting program, but its free and if you have the time maybe worth your while to learn it.

  • How can I load up some pdfFiles from adobe Reader on my iPad into my Adobe Creative Cloud?

    How can I load up some pdfFiles from adobe Reader on my iPad into my Adobe Creative Cloud?

    There is no app for uploading files from an iPad to the Adobe Creative Cloud, and the iPad security model does not allow for upload of files from the browser. The Adobe Touch Apps do provide syncing up to the Creative Cloud but none of them are really designed for working with pdf files.
    You can connect your iPad and move the files to your computer. From your computer you can upload the files via a web browser.

  • Can I Transfer Videofilme Files directly from the Camcorder (Sony NEX 20) into the iPad?

    Can I Transfer Videofilme Files directly from the Camcorder (Sony NEX 20) into the iPad?

    Can I Transfer Videofilme Files directly from the Camcorder (Sony NEX 20) into the iPad?

  • I can no longer print pdf files from firefox, what do i do to fix this?.

    on my other computer,running win 2000 pro with firefox installed,
    i was able to go to a website and view a pdf doccument, fill it out then hit print and my printer would spit it out all filled out with no problem.
    but now it only prints a refference to the pdf file but nothing else..
    i also now get an error message "you have open pdf files in your browser" when i close firefox but i have anything open.. this all started 2 days ago, 10 / 25 / 2010
    what does it all mean and how do i fix it

    I have firefox v 3.6.12, and i use adobe acrobat x ver.9, when print to pdf from firefox browser, always my windows 7 hang, at top windows (not responding)..and hang, task manager can not help...because hang too....the solusion is restart....please give me solution...trims

  • Why can I no longer Print anything from Firefox after installing 28.0?

    Since upgrading to 28.0, I can no longer print anything from within the Firefox browser. My other applications continue to print normally, but whenever I try to print anything from Firefox, I get a "A print error has occurred" message. The Print Preview page displays only a blank, gray window. Prior to upgrading I had no problems.

    Can you try to access Firefox in Safe Mode to see if the problem still exists and/or if it opens? You can follow the below instructions to start it in that mode.
    *Go to Help > Restart with add-ons disabled
    *When Firefox closes and re-opens, select ''Start in Safe Mode''
    If Firefox works fine after starting in Safe Mode, then it's most likely one of your extensions misbehaving. You can enable your add-ons back on by one until you find the conflicting extension.

  • How can I bring my photo library from my desktop or external HDrive into aperture itself

    Good morning,
    How can I bring my photolibrary from the desctop or external harddrive into Aperture itself?

    Marcus,
    is the Aperture version on your new Mac Aperture 3.5.1?
    the contents of aperture on to a external drive
    Is that your old Aperture library? Does it look like this?
    If it is an Aperture library, that you copied to your Desktop, click it to open it in Aperture. Aperture should update/upgrade it to your current Aperture version. What happens, when you try?
    If it is not an Aperture library, but a folder of referenced images files, search for your old Aperture library and transfer that to your new mac.
    Do you already have an Aperture library on your new mac and want to import/ merge your old library into it? Then You first need to let Aperture upgrade the old library to your current Aperture  version, before you can import and merge the library with "File > Import > LIbrary".
    Could you perhaps post a screen capture of what you are now having on your Desktop? And any exact error messages that you might get, when you are trying to open your Aperture library?

  • Why can't I import CR2 photos from a folder in my Mac into iPhoto 8.1.2?

    My wife and I have separate iPhoto databases but to make our lives easier, I want to point my iPhoto to her database.  Before I do that, I need to export a bunch of photos from my database and import them into her library.  However, these photos are the RAW CR2 format and her iPhoto says it doesn't recognize the file format even though her library has hundreds of CR2 photos in it.  When I try to go the other way and import a CR2 photo into my database, it works fine.  Anybody have a clue as to the problem?

    One possibility with music is that it is from a share source and identified as not paid for, I do not know the terminology, but i had to buy a song once to make it available in imovie, my original copy (no idea where i got it) would not show up. but this does not explain the photos not showing up.
    roger

  • I can't past in any text from Photoshop to Premiere, RTL or LTR Latin, Hebrew or Arabic text to Premiere Pro cc 2014. It works only between Photoshop 2014 - AE 2014.

    Any one suffering from the same issue?
    I use to write text RTL(right to left) written languages like Arabic and Hebrew in Photoshop, where after copy and paste the text in Premiere to get the job done. With the latest version of Adobe cc 2014 I can't copy and past any text in to Premiere from Photoshop any more, not even text written in latin. Any one has the same problem or work around this issue possibly. It still works fine to copy/paste arabic text written on Photoshop in to After Effects, but Premiere pro 2014 when you paste any text.
    I'm sure this forum works as feedback for Adobe in general and my question is:
    - Does adobe have any intention in the future to implement RTL text writing in Adobe CC or not? Could any one please answer this question from ADOBE?
    As media consultant I can only recommend for my clients using RTL to use Apple FCP X which has built in RTL support and a new way of editing and greater workflow.

    Hi Vince,
    vince_email wrote:
    ...The only things that changed were an update to Yosemite, I started using Time Machine to make regular backups...
    Please check this blog post. Updating from Time Machine can cause this issue: Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later).
    Thanks,
    Kevin

  • Why can't I access my gmail from firefox?

    I see there are many folks having this same problem. Why??? I'm using windows 7. It's only the gmail that I can not access. I can access other google pages, just not gmail. Very frustrating!

    It may have to do with plugins, addons, and or cache and cookies. I use gmail and have no issues with it.
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.
    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Can't Paste in Dreamweaver C3 from Office 2008

    Howdy there,
    I am running OS X 10.5.1 on a Macbook with Dreamweaver CS3
    and I just bought and installed MS Office 2008. Previously I used
    to use Word 2004 to write the text for my website and copy and
    paste it in Dreamweaver CS3 and it woudl keep the paragraph breaks.
    Unfortunately, when I wrote in Word 2008, copy, and try to paste in
    Dreamweaver now it will only paste in "text only" and not keep the
    paragraph breaks. All the other options for copying will not allow
    me to paste anything from Word 2008. I am guessing Microsoft did
    some type of change to their formatting. Will Adobe create an
    update for Dreamweaver to deal with this change and allow pasting
    from Word 2008? Can anyone think of a work around?
    Thanks in advance!
    Bob

    I can confirm that this is happening. Paste from Word only
    works if I
    select TEXT ONLY. Any other option pastes nothing into Design
    view.
    > Will Adobe create an update for Dreamweaver to deal with
    > this change and allow pasting from Word 2008?
    No idea. Sorry.
    > Can anyone think of a work
    > around?
    Save to HTML from Word, and paste that into code view?
    Anyhow, I'll alert the team about this....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "OUIJA BOARD" <[email protected]> wrote in
    message
    news:fokv9n$r6a$[email protected]..
    > Howdy there,
    >
    > I am running OS X 10.5.1 on a Macbook with Dreamweaver
    CS3 and I just
    > bought
    > and installed MS Office 2008. Previously I used to use
    Word 2004 to write
    > the
    > text for my website and copy and paste it in Dreamweaver
    CS3 and it woudl
    > keep
    > the paragraph breaks. Unfortunately, when I wrote in
    Word 2008, copy, and
    > try
    > to paste in Dreamweaver now it will only paste in "text
    only" and not keep
    > the
    > paragraph breaks. All the other options for copying will
    not allow me to
    > paste
    > anything from Word 2008. I am guessing Microsoft did
    some type of change
    > to
    > their formatting. Will Adobe create an update for
    Dreamweaver to deal
    > with
    > this change and allow pasting from Word 2008? Can anyone
    think of a work
    > around?
    >
    > Thanks in advance!
    >
    > Bob
    >

  • How can i paste the explain plan from toad..

    Hello all
    I tried taking a snap of the explain plan from toad but in this forum the paste option is disabled...please help

    964145 wrote:
    I tried taking a snap of the explain plan from toad but in this forum the paste option is disabled...please helpI don't know, but it is a waste of time since explain plans from Toad are not useful.
    Please read the forum FAQ on providing information for a tuning request, it describes how to generate an explain plan that can be shared.
    {message:id=9360003}
    This is an example.
    SQL> explain plan for
      2  select * from dual;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3543395131
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |     2 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| DUAL |     1 |     2 |     2   (0)| 00:00:01 |
    --------------------------------------------------------------------------

Maybe you are looking for

  • IPod Nano shows up on "my computer", but "sync" is grayed out in iTunes

    This is my second iPod that has has the same problem on two different computers.  I have run diagnostics, and the only test that fails is the one to sync. I have went through all of the help steps located there, and still cannot get it to work.  Sinc

  • Hard drive not showing in Disk Utility?

    Recently, I went to install Windows 10 via Bootcamp and set up two partitions (one for OS X, 500gb and one for Windows, 500gb). I accidentally installed Windows onto of the OS X partition and somehow the Windows OS disappeared so I currently have no

  • How to show the First and Last name of the user instead of user name

    Gurus, We have the full email id of the user as the portal user name. Right now we are using the "Item Attributes - Current User" to show the user name. We don't want to show this anymore. We would like to show the First and Last name of the user on

  • Process Instances do not appear in BPEl console

    HI everybody I have a Asyn BPEL worflow which consists of a receive business event lisening to a change in database which in turn initiates a BPEL flow.The problem i am facing is that when i do make a change in database everything works fine but i am

  • Video "Hits" After Rendering

    After I render a piece of my timeline and look at it on our studio monitor, I'm getting a good amount of what I would call "hits" in the video, like hits you would see on an old tape that's past its prime. The timeline has a number of graphics layere