How can i get my data from my sync acount when i lost it today

Firefox has been causing pbs for my MBP OS X ML. So i tried to reinstall it. Removed it form OSX cleaned the system then reinstalled it. When i tried re syncing my data i forgot the password for my account. I had to reset it.
Then when i tried to re-add my MBP to my sync account it told me do you really want to replace the data from this device with the data on the sync account. I said yes then nothing happened.
I tried re syncing but nothing happened. I changed the sync option to the second one "replace all data on this device with my sync data" but nothing happened.
I don't know how to deal with this? can someone help please. Did i lose all my sync data or there is a way to get it back?

Thank you for your replay, i kind of got that at the end.
The only solution is starting over or going the other way (chrome's way).
Since, i'm a gmail user i think the other way is better even if i've been a FF user from over 8years (netscape's years). I thought sync was a good way/tool to handle my stuff and boy i was wrong. If losing all my bookmarks (i'm a massive user) is what it takes to switch, then i'm ok with it.
This pb with sync and the way it is handled are really stupid , but anyway.
Someone is going to notice it in the future but...
Thanks anyway.

Similar Messages

  • How Can we get the data from Non-SAP to SAP in WebDynpro

    Hi,
    I hope u understand my query, How can we get the data from Non-SAP to SAP thru WebDynpro Programming.
    Help out with the steps for getting the data or procedure.
    Regards,
    Mutyapu

    You can expose the APIs in the Non-SAP backend as Web Services, and consume them in SAP by creating an Enterprise Proxy. Then these can be called just like normal class methods from Web Dynpro.
    Regards,
    Nithya

  • How can i get the data from database & add them as a link

    Hi,
    how can i get a data from a database(DB2) and that data will be having a file so i should make them as a link.i tried it in jsp .
    <%
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
    Class.forName("COM.ibm.db2.jdbc.net.DB2Driver");     
    response.setContentType("text/html");
    Connection conn = null;
    conn = DriverManager.getConnection("jdbc:db2:spintran");
    Statement stmt = conn.createStatement();
    stmt.executeQuery("set current schema tut");
    ResultSet rs = stmt.executeQuery("select * from tutorial");     
    %>
    Type Of the Category : &nbsp&nbsp&nbsp
    <%
         while (rs.next())
         String desc = rs.getString(1);     
         out.println(desc);
    %>
         <A HREF = "<%=desc%>"><%=desc%> </A>
         <%
         %>
    but it is not working.how can i link.
    thank you.

    what is desc? is it the file name ? whats the data type of desc in db? INFILE?
    if desc is just the name of the file, then make sure that such a file exists in the proper folder.only then the link works..
    that is, if desc is 'a.jpg' then a.jpg should be existing in the same folder as your html is.

  • How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    Restore from the iCloud backup - assuming that you were backing up to iCloud in the first place. If you weren't using iCloud for backup - then you are out of luck.
    If you were backing up to iCloud - you have to erase all contents on the iPad in Settings>General>Reset>Erase all content and settings - before you can restore from the iCloud backup.
    Read this article before you do anything else
    http://gigaom.com/apple/ios-101-set-up-and-restore-from-icloud-backup/

  • How can i get my data from an application that deleted from my iphone

    how can i get my data from an application that deleted from my iphone????

    Which application?
    With many applications, when deleting the app the app's data is deleted with it.

  • How Can I get my bookmarks From My Sync account without my sync key after a hard drive crash?

    My Computer Hard Drive crashed before I could back up my Sync Key or add another device. How can I get My bookmarks from my sync account without resetting the sync key and wiping my data?

    Not from Mozilla. Nobody knows your Sync Key except for you. <br />
    Is that hard drive usable at all? Like as an external disk in a USB hard drive enclosure?
    If so, you can recover your Firefox data from that drive. <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    Your old Profile is located here in Vista & Win7: <br />
    ''drive'':\Users\''Windows login user name''\AppData\Roaming\Mozilla\Firefox\Profiles\''profile_name'' <br />
    Make sure that you unhide "Hidden files and folder" in the Control Panel > Folder Options -> View

  • I sync'd my Iphone with itunes and all my data on my Iphone was erased.  How can I get the data from my Iphone back?

    I am a previous user of itouch and sync'd it with itunes on my PC using windows 7, itunes v10.  Bought my first iphone and started using it: I entered contacts, photos, apps, etc.. I sync it for the first time and itunes removed all my data from my Iphone and put my old data from Itouch on the iphone.  How can I get my Iphone data back?

    I am a previous user of itouch and sync'd it with itunes on my PC using windows 7, itunes v10.  Bought my first iphone and started using it: I entered contacts, photos, apps, etc.. I sync it for the first time and itunes removed all my data from my Iphone and put my old data from Itouch on the iphone.  How can I get my Iphone data back?

  • How can I get xml data from KM?

    Hi guys,
    how can i get a xml data from KM?
    I saved an xml document in KM, and I want to read its content. How can I get this document?
    Using
    DocResource = (IResource) resFactory.getResource(RID.getRID("Document/ Path"),resContext)?
    I want to know which kinds of API of KM are responsible for this.
    Thanks in advance
    Regards,
    Liying

    Hi Liying
    use this code.
    try {
                   IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
                   IUser sapUser = wdClientUser.getSAPUser();
                   com.sapportals.portal.security.usermanagement.IUser ep5User =
                        WPUMFactory.getUserFactory().getEP5User(sapUser);
                   IResourceContext resourseContext = new ResourceContext(ep5User);
                   IResourceFactory resourseFactory = ResourceFactory.getInstance();
                   RID pathRID =
                        RID.getRID(
                             "/documents/"(Path to folder where ur file is"");
                   ICollection collection =
                        (ICollection) resourseFactory.getResource(
                             pathRID,
                             resourseContext);
                   IResourceList resourceList = collection.getChildren();
                   IResourceListIterator resourceListIterator =
                        resourceList.listIterator();
    while (resourceListIterator.hasNext()) {
                        com.sapportals.wcm.repository.IResource resource =
                             resourceListIterator.next();
    try {
                             /*File from KM Reading*/
                             InputStream in = resource.getUnfilteredContent().getInputStream();
                             ByteArrayOutputStream out = new ByteArrayOutputStream();
                             byte[] buffer = new byte[4096];
                             int bytesread = 0;
                             while ((bytesread = in.read(buffer)) != -1) {
                                  out.write(buffer, 0, bytesread);
                             String dataToBeConvertedToXML = out.toString();
    catch(Exception e){}
    catch(Exception e){}
    Award points if found usefull.
    I suppose you have used KM sharing reference in ur application
    Regards
    BP

  • How can i get the data from the weblink

    Hi All,
    Good Afternoon,
    i create a page with picklist,
    that picklist contains so many currencies like(USD,AED,BSD----------)
    when ever i am selecting the currency from that picklist,
    that time i want to get the current exchage rate from this link
    http://www.oanda.com/convert/classic
    how can i get the current exchage rate from that link.
    pls give me the gudaincee.
    i hope u will help me.

    Hi Gaurav,
    Below given link gives a nice demo of integrating web service with OAF. (For using captcha user verification service).
    [http://oracle.anilpassi.com/integrate-oa-framework-with-web-service-2.html]
    However, using web services will cost little extra effort of learning SOAP and wsdl.
    Please let me know if you find any difficulties related to web services.
    Abdul Wahid

  • My hard drive crashed with no backup.  How can I get the data from iCloud onto my Mac?

    My hard drive went bad and needed to be replaced and I've lost everything that was on it (no backup - I know, I know...).  Fortunately much of my data was backed up either on icloud or my ipad but I haven't been able to find any information about restoring it FROM icloud or ipad TO my Mac, only about how to restore to an ios device.  I am running Lion.  Thank you!

    I guess what I meant to say was that I can log on to icloud to see my contacts, calendars, etc but is there a way to get that data onto my computer?  In other words, how do I associate my new hard drive with my icloud account?  I am probably not phrasing this properly - sorry.  Three days ago (pre-crash) my desktop was configured to reflect my icloud info but I don't know how to make it do so again...does this make sense

  • How can i get xml data from html

    Hi
    i need to submit data from an html form to server via xml.
    ( ie data shold be in xml format instead of POST/GET methods )
    how can i can i make this happen ?
    Renjith.

    read the excellent suggestion from mochamaniac (reply 2 of 5): http://forum.java.sun.com/thread.jsp?forum=34&thread=303120
    ps. next time run a search on the forum prior from posting ;-)

  • How can I get application data from iPad1 backup??

    Hi,
    I backuped my iPad1 with iTunes and when I restore this backup in my new iPad2, all data from my applications is missing. In iPad1 I have 36GB of application data; in iPad2, after restore the backup, I have only 1.5GB. Is there a way to get these data back?? I'm using iOS 4.3.3 on both devices.
    Thanks,
    Weverton

    If you are referring to music or apps, you need to back that "data" up before restoring as a new device.
    You can re download the apps from the same iTunes account (AppleID) but if you didn't back up your music, according to Apple...
    From the iTunes Help menu.
    "It’s important to make backups of your purchases from the iTunes Store. If you lose a purchased item for any reason and haven’t backed it up, you’ll have to buy it again"
    How to back up your media in iTunes

  • How Can i get the data From A Table that use DefaultTableModel

    Hi and sorry for my bad english. The problem that i have is that i used this code to fill a table. Now i want when i select a row and click in a button , get the value of that row that i select so then i can update or delete that data in my dataBasesServer.
    private void consulta(){
              Connection c = ConectarSQL.conexionSQL();
              try {
                   Statement s = c.createStatement();
                   ResultSet ar = s.executeQuery("Select Apellido, Nombre FROM Personas");
                   DefaultTableModel modelo = new DefaultTableModel();
                   this.Tabla.setModel(modelo);
                   modelo.addColumn("Apellido");
                   modelo.addColumn("Nombre");
                   while (ar.next()) {
                      Object [] fila = new Object[2];
                      for (int i=0;i<2;i++)
                         fila[i] = ar.getObject(i+1);
                      modelo.addRow(fila);
              } catch (SQLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }

    Dont worry kevinaworkman, the thing is that a read it and is really usefull, but i was looking other kind of solution. But i welcome your answer and interested to solve my problem.
    I find the answer.
    To retrive the data i have to use the following instruction:
    Tabla.getValueAt(Tabla.getSelectedColumn(),Tabla.getSelectedRow);

  • How can i get my Data from iPad to MacBook

    Hello, I have bought Today a MacBook pro and want to bring my Data (contacts, Dates, mp3...) from the iPad to the MacBook. Don't Know how. Can you help?

    Apple - Support - iPad

  • How can I get qucken data from windows copied over to quicken for the Mac?

    I recently bought a Macbook Pro. I have been using windows my whole life. I installed Quicken 2006 for the MAC. I backed up my windows quicken on a disk and it just doesn't open it. Is there a trick? or am I screwed?

    Unfortunately, there is no simple way to convert a Quicken/WIndows data file to Quicken/Mac. This is a major complaint of a lot of switchers.
    I can't find the link (I'll keep looking) but I know that Intuit offers a conversion service. You send them your data file, and for an absurd amount of money they'll convert the file for you.
    You're probably better off starting your Quicken/Mac file from scratch.
    That's what I did. It took some time to do, but now I'm happy with it and I didn't have to pay anyone to convert the file.

Maybe you are looking for