How do I move bookmarks from an old profile to a new profile?

I have created a new profile for Firefox and have a huge amount of bookmarks in my old profile. How can I move the bookmarks from my old profile to the new one? I have tried backing up my old bookmarks and then restoring them on the new profile's bookmark library, but this didn't work (the file wouldn't show up and when I put it in a folder to force it to show up it wouldn't do anything). So how can I do this?

http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

Similar Messages

  • How do I move apps from an old mac to a new one

    I am purchasing a new Macbook Pro after having my old one for six years. I have numerous apps that I have purchased and downloaded over the years. I don't want to loose them and really don't want to have to purchase them again. Can I and how can I move apps from my old Mac to my new one?

    Be sure you back your current system up BEFORE you do anything. If you use Time Machine, migration assistant works well.
    Barry

  • How do I move pse9 from my old laptop to a new one?

        How do I move pse9 from my old laptop to a new one?

    I have my original disk, but I believe I need to de-ctivate the existing copy before installing on the new computer.

  • How can i add bookmarks from my old hard drive to new hard drive on the same computer without overwriting the new bookmarks on my new hardrive? Cheers

    The old hard drive was operating on Xp and new hard drive is Windows 7, if this makes any difference.

    Unfortunately there is no simple method and, the workaround is far from perfect. The .json files Firefox uses overwite the existing bookmarks but the .html option appends and does not overwrite.
    First of all backup all bookmarks on each hard drive. The best method of doing that is to backup the Firefox profiles, that captures the bookmarks databases (''places.sqlite'') and the autobackups that Firefox holds.
    * [[Back up and restore information in Firefox profiles]]
    * [[Restore bookmarks from backup or move them to another computer]]
    #First ensure you have the largest databsae on the current install of Firefox. If necessary
    ##Locate the Firefox Profile on the old drive
    ##* [[Profiles - Where Firefox stores your bookmarks, passwords and other user data]]
    ##Open Firefox and find the profile that is currently in use.
    ##*Quick method <br/>Use FirefoxButton -> Help -> Troubleshooting Information [Open Folder] <br />(No certain of exact wordings, OR navigate to ''about:support'' )
    ##* [[Back up and restore information in Firefox profiles]]
    #Now use HTML backups to transfer from the smaller database the basic bookmarks.
    ## Close Firefox & if the old database is the largest one use the Operating System copy option to overwrite the existing places.sqlite so that Firefox now uses the old database
    ## Reopen Firefox but this time open using the old profile. The easiest method of that may be to disable the new drive from the Bios or alternatively use Firefox profile manager and register the old profile location and open firefox with that profile
    ##* [[Use the Profile Manager to create and remove Firefox profiles]]
    ## Export the bookmarks from the old profile using the Firefox Library and the HTML option.
    ##* see [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    ## Close Firefox, reopen new version/newprofile and import the HTML.
    You now have the largest database of complete bookmarks with tags etc. , plus additional bookmarks from the smaller database added on. Obviously you may have some duplication

  • How do I move mail from an old server to a new server?

    I am rebuilding my server. The new server runs on OS X 10.9.4 with Server 3.1.2. The old server ran OS X 10.9.x and Server 3.x (the exact versions are not known).
    Within the folder /Library/Server/Mail, I found the email stores for both systems.  I have gone through each folder and identified the 36 character string that serves to identify the user's mailbox and paired each one to a user id on both systems.  On the old system, there are multiple mailboxes for some users, and I think it is a result of the users being deleted and recreated: perhaps the system identified the identical name and assumed that the user might be different and therefore created a unique 36 character id for the mail system.
    The trick is, I am trying to recover the mail from the old server.
    I have attempted to copy the files which are human readable and formatted for SMTP transmission to the new server under the correct mailbox corresponding to the owning user (see screen shots below). The simple act of copying the files has not made these files visible via the IMAP protocol. I have tried restarting the mail service hoping that the Server app would rebuild whatever indexes need to be built so that the mail can be served via IMAP, and that has not worked either.
    The question is, how do I get the mail from the old server mail boxes into the new server mailboxes?
    This screen shot shows the location of one mail collection at /Library/Server/Mail/Data/mail/[userid].  Mail sits in the "new" folder only for a moment before being processed and put into the "cur" folder.  Copying mail from the old server into the "new" folder produces an empty "new" folder, but one can see the files populate briefly before they are moved into the "cur" folder.
    The next screen shot shows one email opened in TextEdit.  The format should look very familiar.  This is the same format that one would use to send SMTP requests to an SMTP server.  This particular example happens to be an email from a Gmail account to the PediatricHeartCenter.org domain to test the mail system when the old server was set up.  It was sent on 24 Jan 2014 and had text reading "Intended for Mavericks1. -Jared".

    On further research, I have learned that OS X Server sets Dovecot to use the MailDir format.  The email messages can be removed from the folders and put back, and as long as they were present in the folder to begin with (received by Dovecot originally), they reflect in the Mail.app on client computers.  Deleting a file in the "cur" folder causes the file to disappear in Mail.app. Copying the file back into the "cur" folder will cause the file to reappear without any modification of an index file or any other system component, as long as the file was properly formatted by Dovecot to be identifiable to that folder.
    According to Dovecot.org's review of MailDir found here (http://wiki2.dovecot.org/Ma,ilboxFormat/Maildir), the file name can be broken into simple pieces: " [unixtimestamp].[process id].[hostName],S=<message size>,W=<virtual message size>/2,[status tags]".  The original MailDir++ specification requires the string ":2," to appear after the virtual size, but this file naming format is not legal in Mac OS X, so Dovecot is modified by Apple to use "/2," instead.
    The Dovecot's wiki describes inserting new messages as follows:
    Mail delivery
    Qmail's how a message is delivered page suggests to deliver the mail like this:
    Create a unique filename (only "time.pid.host" here, later Maildir spec has been updated to allow more uniqueness identifiers)
    Do stat(tmp/<filename>). If the stat() found a file, wait 2 seconds and go back to step 1.
    Create and write the message to the tmp/<filename>.
    link() it into new/ directory. Although not mentioned here, the link() could again fail if the mail existed in new/ dir. In that case you should probably go back to step 1.
    All this trouble is rather pointless. Only the first step is what really guarantees that the mails won't get overwritten, the rest just sounds nice. Even though they might catch a problem once in a while, they give no guaranteed protection and will just as easily pass duplicate filenames through and overwrite existing mails.
    Step 2 is pointless because there's a race condition between steps 2 and 3. PID/host combination by itself should already guarantee that it never finds such a file. If it does, something's broken and the stat() check won't help since another process might be doing the same thing at the same time, and you end up writing to the same file in tmp/, causing the mail to get corrupted.
    In step 4 the link() would fail if an identical file already existed in the maildir, right? Wrong. The file may already have been moved to cur/ directory, and since it may contain any number of flags by then you can't check with a simple stat() anymore if it exists or not.
    Step 2 was pointed out to be useful if clock had moved backwards. However again this doesn't give any actual safety guarantees, because an identical base filename could already exist in cur/. Besides if the system was just rebooted, the file in tmp/ could probably be even overwritten safely (assuming it wasn't already link()ed to new/).
    So really, all that's important in not getting mails overwritten in your maildir is the step 1: Always create filenames that are guaranteed to be unique. Forget about the 2 second waits and such that the Qmail's man page talks about.
    The process described by the QMail man page referenced above suggests that as long as a file is placed in the "new" folder, that a mail reader can access it.  The mail reader then moves the file to the "cur" folder and "cleans up" the "new" folder.  This is clearly happening in OS X, because the messages are moving from "new" to "cur", but IMAP is still not serving these foreign messages to the remote readers.
    The thought crossed my mind that perhaps it is the fact that the host name does not match, which would cause the failure, however changing the "host" portion of the name from the old-server to the new-server did not fix the issue.  Even with the new server name in the file name, the inserted message fails to appear in client Mail applications.
    Within the file their is header information that still references the old machine. I'd like to not have to change the email files, because this will violate the integrity of the message. Also, this might take a lot of time or incur risks associated with poor automated processing. The header information should not be referenced by Dovecot, because the wiki page describing MailDir notes that neither Dovecot nor Dovecot's implementation of IMAP refers to the messages header information when moving and serving these mail files.
    Unlike when using mbox as mailbox format, where mail headers (for example Status, X-UID, etc.) are used to determine and store meta-data, the mail headers within maildir files are (usually) notused for this purpose by dovecot; neither when mails are created/moved/etc. via IMAP nor when maildirs are placed (e.g. copied or moved in the filesystem) in a mail location (and then "imported" by dovecot). Therefore, it is (usually) not necessary, to strip any such mail headers at the MTA, MDA or LDA (as it is recommended with mbox).
    This paragraph leads me to believe that after the mail box is identified that the content of the file becomes irrelevant to the system which manages. This suggests that we should be able to inject messages into a mailbox and have the system serve them as though they had belonged in that mailbox all along. Yet I have not found a way to do this.

  • How can I copy bookmarks from my old computer to my new computer, both with Windows XP Pro?

    Transferring bookmarks from old computer to new computer, both with Windows XP Pro?
    Thanks for your h4elp.
    Also, can I create a file of bookmarks in MS Word or Open Office so that I can save them?

    You can export your bookmarks to an HTML file on your old computer, and them import that file on your new computer. The HTML file also is your backup, and if you open it into Word, you could save it as a DOC file if you prefer.
    For more information, check out these articles:
    [https://support.mozilla.org/en-US/kb/Exporting%20bookmarks%20to%20an%20HTML%20file Exporting bookmarks to an HTML file | How to | Firefox Help]
    [https://support.mozilla.org/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File Importing Bookmarks from an HTML File | How to | Firefox Help]
    Note that if you are using the orange Firefox button (abbreviated menus), you can access the class menu bar with the full Bookmarks menu by tapping the Alt key or pressing F10.

  • How do i move Itunes from my old computer to my new one?

    Trying to move Itunes account from old computer to new one.  Am not sure if I install Itunes on new computer will it then allow me to log in and obtain my already purchased games/music or will i lose from old to new computer?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How do i move itunes from an old computer to a new computer?

    I just purchased a new laptop and am trying to put itunes on it.  I have an iphone 3gs.  I authorized the computer and synced but it will not transfer my music.  Help...what am i doing wrong?
    Thanks

    These are two possible approaches that should work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Restore the backup to your new computer using the same tool used to back it up.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase are reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Should you be in the unfortunate position where your computer has died with no backup then see Recover your iTunes library from your iPod or iOS device.
    tt2

  • How do I move music from my old IPhone to a new one?

    My old music is from CD's that I own.  I put them on my phone a couple years ago thru Itunes with no problem.  Now it seems that Itunes will only let me add music to my phone if I buy it from them. 

    I'm using a PC, not a Mac.  My system is using Wi-Fi.  And like I say, using ITunes there is no way to upload my music to my IPhone.  Clicking on devices only gives me the option to Sync, and restore.  I've even tried backing up the old phone, which has the same name as the new one, and then restoring it to the new phone but it won't move the music to the new phone.  I checked out the ITunes Match.  Now I'm not a real bright guy but it looks like Apple wants me to pay them $25 a year to listen to my own music on my own phone.  I mean, it's not like I'm stealing anything.  I paid for the phone and I paid for the music.  Why should I have to pay them to sisten to it? 

  • How to send my bookmarks from my old iPad into a new one and on my computer?

    I have just recently got a new iPad 3. I got my bookmarks on my iPad 2, but I don't want to lose them. How do I send them onto my iPad 3 (and on my computer), please?
    Thank you.

    You manually created all bookmarks with Safari on your iPad 2? No bookmarks available with a browser on your computer that is supported for syncing with an iOS device?
    The first time you connect a new iOS device to iTunes that is used to sync with another iOS device, you are prompted to transfer the backup for the other iOS device to the new iOS device. Safari bookmarks are included with the backup for the device.

  • I have a new computer. How do I transfer Bookmarks from the old computer to the new computer?

    no more details

    Credit Cor-el: You can export the bookmarks to an HTML file and save that file to an USB thumb drive and import that file on the other computer. You can also email that file to yourself and retrieve it on the other computer.
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • I want to transfer my bookmarks from my old computer to my new computer, how do i do it?

    I want to transfer my bookmarks from my old computer to my new computer, how do i do it? can I just find the right file and drop it into the firefox folder on my new computer? I am running win7 and firefox 5 but my old computer is running forefox 4.0.1. Cassandra

    See this Apple support document for different ways to copy your iTunes library from one PC to another.
    iTunes: How to move your music to a new computer
    B-rock

  • How can I move bookmarks from one computer to another.  JUST BOOKMARKS, NOT ANYTHING ELSE

    How can I move Bookmarks from my MacBook Pro to my iMac; just Bookmarks, nothing else.

    Safari Bookmarks?
    Export bookmarks as a HTML file to a usb stick or something.
    Put the USB in your other computer and import bookmarks 

  • How do I move contacts from my old candybar Nokia to my iPhone?

    How do I move contacts from my old candybar Nokia to my iPhone? - now that I can't import using the old SIM card.

    Perhaps the fastest and simplest way would be to just take both devices to the nearest AT&T corp. store and get them to do it.  Then you can sync the iPhone with Contacts on your Mac (or outlook on your PC) or with iCloud to back them up for safekeeping.

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

Maybe you are looking for

  • MacOS 10.7 needs a new name

    I propose Lion King, as in "The Lion Sleeps Tonight .." On a serious note, this OS is truly slow, as in snail's pace. The simplest actions: opening/closing a file, quitting out of an application, or, on opening Preview, and clicking on File->Open Rec

  • Problems syncing with iTunes

    When syncing to iTunes, it says that my phone needs much more space (over 600MB) to sync. According to the bar at the bottom of iTunes in the phone summary screen, I have nearly 4GB of memory left. Whats up with this?

  • Version Control with JDeveloper application using ClearCase

    My team is evaluating J Developer to see if it matchs our requirement. We want to know how we will be able to use Clearcase as version control tool with our Java or JSP application developed using JDeveloper. We understand that J Developer will help

  • Is there a way to segregate the SAP WAS into 2 physical boxes

    in a traditional J2EE architecture, I can have one physical machine running the web server and another physical machine running the J2EE server. With WAS, can i actually do that? If I'm using Webdynpro, is it even possible? That's because WebDynpro t

  • I got error message 4001 when trying to upload music to imatch

    what can I do