I NEED HELP WITH SYNC PROBLEM!

I have already posted about this once and got no help! I can not afford Apple's greedy fee for helping us with a product we paid a lot for
My iPad will not sync with iTunes anymore!
The error I get is: The iPad "Jonnathon's iPad" cannot be synced. An error occurred while reading from the device.
Sometimes the error is different saying it cant find a required disk.
It always occurs just after downloading apps that had been purchased or updated since the last sync.
I have made sure my iTunes is up to date and the iPad does have the latest version of it's OS.
I did do a "Run Diagnostics" and did both "Device connectivity tests" and "Device sync tests" and no problems were found. But I still get the errors!

This is wiered.You better call the Apple and say your problem.Maybe they could help you.Or maybe your iPad has a virus.If you think it has a virus , you have to restore it.

Similar Messages

  • Need Help With Sync Problem

    I've been having difficulties loading music files onto my ipod shuffle. I enabled disk usage and tried to sync valid audio files, yet there pops a message saying " ...cannot be synced. The disk could not be read from or written to." I have no clue on what else to assess, so any help would be greatly appreciated. Thank you

    That was one of the primary sources I looked through,
    yet stil everything on that list seems to be a o.k.
    from my computer. Any other suggestions?
    Gomps, I have been having exactly the same problem as you. I also tried everything in the so-called troubleshooting doc recommended above. i continued poking, and found another thread about what seems to be a related issue.
    Try this (do it exactly as recommended):
    Disconnect the iPod from the computer. Then go to "start> right click my computer>
    manage> services and applications> services> click iPod service> click stop service." Then connect the ipod and it should show up in my computer. Format it so all content is gone. Next, go back to "start> right click my computer>
    manage> services and applications> services> click iPod service> click Start service." This should have the service running again. Open iTunes and connect the shuffle. When it says to automatically fill it (the window that pops up) dont unclick it, proceed so the shuffle autofills. Before it stops, quickly go to the settings tab. Then, scroll down to where it says "enable disk use". select that and hit apply. Now, you manually eject the iPod and you can manage your music!
    All I can say is I tried everything and this finally worked for me. I run WinXP Pro x64.
    this is courtesy of Albertech, who is the real god.
    http://discussions.apple.com/thread.jspa?threadID=720639&tstart=45

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Need help with a problem after cloning my HD....

    I recently cloned my HD to a backup drive. I did an erase and install of Tiger on my original drive. I recently cloned everything back onto my original drive from my backup drive. Now when I go to boot up on my original drive, for the first time ever I must type a Username and Password to log on to the computer. Trouble with this is, I tried my username and password and it would not work. I double, triple, quadruple checked my spelling and tried different combinations just in case i was being stupid, NOPE. It won't let me log on to my main HD. Can anyone help with this?

    Let me get this straight. You did
    1: Cloned your original boot drive to a external - not a problem
    (did you boot from the clone to check it out?, did you use cloning software or???)
    2: You erased your original boot drive - ok no problem.
    3: You then installed Tiger on your original boot drive - ok no problem there
    4: But you cloned from your clone back onto your original, freshly installed Tiger drive?
    Why did you do this?
    Cloning copies the whole drive, all the little hidden stuff, copy protection etc.
    That's why it's called a clone.
    Did you mean to say you copied certain folders/files from the clone onto the new Tiger install on your original boot drive?
    What folders/files was these?
    You need to copy the contents of certain folders inside your User folder, not the folders themselves.
    What software did you use to clone with?
    Read my detailed instructions here
    http://homepage.mac.com/hogfish/Personal6.html
    http://homepage.mac.com/hogfish/Personal10.html

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • HT5622 I need help with sync my iphone 4 to my new pc

    I just got a new pc and I can not remember how to sync my iphone to my pc to tranfer all my pictures and videos I need help!! I can not update my phone until I remove some of my content and I want it on my pc.

    You can only Sync to One iTunes Library at a time.
    tjmommy2813 wrote:
    I just got a new pc
    From your OLD computer...
    Copy your ENTIRE iTunes FOLDER to an External Drive... and then from the External Drive to your New Computer..
    Full Details Here  >  http://support.apple.com/kb/HT1751
    tjmommy2813 wrote:
    ...I can not remember how to sync my iphone to my pc ...
    Make sure your new pc is Authorised
    http://www.apple.com/support/itunes/authorization/
    If you do not have access to the iTunes Library on your Old computer... or its Backup...
    See these 2 Links...
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141

  • I like many need help with a problem of burning cds

    I am trying to burn a simple playlist to a memorex music cd-r. Every time I try a message pops up with the error code of 4261 and then pops out the cd. Any help will be very much appriciated as I am at my wits end with this problem. Thank you so very much!
    Windows, Media Center PC    

    Place the PSU in and connect the 20 pins connector and the 4 pins connector will do.
    You may also try swapping the RAMs with another one to test f the RAM is to be at fault.

  • Need help with Sync/Async BPM Scenario

    I have an R/3 RFC -> XI -> HTTP (to vendor A) scenario that is working fine.  It is a totally synchronous call event.  The Integration Directory pieces sit in a scenario named HotkeyOutbound.
    Now I need to create a process for RFC -> XI -> HTTP (to vendor Panduit).  The R/3 RFC is the same sender, but vendor Panduit only supports an asynchronous HTTP connection.  I followed the Sriram Vasudevan weblog on Sync/Async Bridge and created my BPM.  I am stuck on trying to determine what to set up in the Integration Directory. 
    First off, should I be able to use the same HotkeyOutbound scenario as with vendor A so all hotkey stuff can stay together?  Or do I have to create a new scenario with a copy of the R/3 business system for the sender?  I moved forward with a new scenario (PanduitHotkeyOutbound).
    I also need to know how many config Agreements and Determinations to use.  The image at http://webpages.charter.net/kpwendel/keith1.html shows what I have so far.  Which are not needed?  What is missing?
    And I tried setting up an HTTP communication channel for outbound async to vendor Panduit and another for inbound async from vendor Panduit.  XI won't let me set up a sender HTTP channel.  Why not?
    Thank you in advance.

    I have yet to figure this out, and probably need to go back to my Integration Repository setup since my problems may start there.  This screenshot shows my Repository objects.
    http://webpages.charter.net/kpwendel/intProcess.jpg
    HELP!  These are the steps I took, with questions embedded.
    (1) Created data type and message type for xml document (note that same format is used for request and reply).
    (2) Created PANRequestAbstractInterfaceSync (abstract and sync) for first part of Integration Process.  Should the input message be the RFC or XML message type?
    (3) Created PANRequestAbstractInterfaceAsync (abstract and async) for 2nd part of Integration Process.
    (4) Created PANResponseToBPM_MessageInterface (outbound async) for interface back into XI from partner. Is this needed?
    (5) Created PANHotkeySync_to_Async_IntProc Integration Process to handle sync to async bridge.
    - Wondering why PANRequestAbstractInterfaceAsync is the only message interface available when I make container object (PANMessage)?
    (6) Created two Message Mappings to handle RFC data to XML mappings (outbound RFC-> XML and inbound XML -> RFC).
    (7) Created Interface Mapping that includes both the Request and Response message mapping programs from step six.  Source is the RFC and Target is PANRequestAbstractInterfaceSync.
    - Do I need another interface mapping with Source being PANRequestAbstractInterfaceAsync and Target being the RFC?
    Link to these steps and app diagram:
    http://webpages.charter.net/kpwendel/PAN_Hotkey_Diagram.jpg
    Thank you very much for your time.

  • HT1296 Need help with sync from phone to computer

    When I sync my phone to my laptop, I would like info I entered on the calendar on my phone to be added to the calendar on my computer.  I can only get it to sync from computer to phone.  I need to update both
    any ideas.  I have searched the help files and can't find this anywhere

    My problem is similar. I just upgraded from the 4S to the 5 and I used to be able to sync the calendar on my iMac and iPhone using iCloud without getting duplicates by selecting/deselecting the appropriate calendars on the respective devices. Everything synced as I entered it. 
    I'm pretty sure it was working with the 5 until recently...
    Today I noticed that an event I entered on the 5 for last week didn't show up on my iMac. When I checked the EDIT screen on the phone to see what calendars were checked, only the calendar for that event was (on the All on my iPhone).  All but the Unfiled calendar are checked on the All on my iCloud.  When I unchecked and rechecked the calendars under the Phone didn't help. Can't get the thing to sync...
    Seems like most people are having problems with Exchange accts, but here I am with my iMac/Phone/Cloud...

  • Need help with download problems on Ipod-5th Generation

    Hello everyone. Another newbie here who is not technologically inclined but love their Ipod. I just purchased new music videos from the Itunes store, connected my Ipod to the PC and left everything alone until I saw the update complete prompt. However, I am now in a panic because not only did it not sync my new purchases but...all of my previously purchased TV shows, music videos, etc are no longer on my Ipod. I did not request nor click to have anything erased. What can I do to restore my complete library of tunes, videos, tv shows, as I have spent a lot of money on my purchases for this Ipod?
    Also, while I'm asking for help: do any of you have problems with downloads timing out before the downloads from the Itunes Store are complete? I purchased several music videos during downloads that said there was an error due to download timeouts; not only did the items never show up in my library but never synced to my Ipod. There were error codes assigned to these videos but...who do I do when this happens? Thanks in advance.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Help! Intalled i tunes and need help with syncing

    I have successfully installed iTunes on my compaq cpu (windows xp) and have purchased a couple of audio books. However, when I plug in my Sony MP3 playing to my CPU via the USB cord. My MP3 player icon does not show up on my items tool bar so I am unable to sync it. How do I create the connection between my MP3 player and itunes?
    Hope I am making sense! any help would be appreciated..
    FP

    iTunes for Windows is only compatible with the iPod/iPhone range and the iTunes enabled phones from Motorola. You may be able to get your player working with the aid of a third party helper program. Have a look at this one and see what you think: iTunes Agent -Windows
    If your player supports drag and drop through Windows Explorer you can drag tracks from the iTunes Music folder rather than through the iTunes interface. Also remember that many players will not work with AAC (MP4) format at present so if you imported anything from CD into iTunes using the AAc encoder then they will need to be converted to MP3: How to convert a song to a different format

  • I need help with syncing

    Hello, I recently downloaded Itunes on my computer for back up reasons. when it finished downloading I had to log off on my user and went on a different one on the same computer. I synced my Ipod touch on this user cuz I thought it would be synced on the entire computer (as you can tell Im not good with computers) then the next day I loged on to MY user on the same computer and went on Itunes but it said it was synced with a different library and I knew if you sync to a different one all your songs will be deleted and I cant do that because I purchased ALL the songs on there. So if there is a simple way to explain it to me that would be great but I was wondering if I transferre my purchases on to the library I want it on then erase and sync will that work or will the songs that I transfered still be erased PLEASE HELP I NEED TO KNOW AND I HAVE BENN LOOKING NON STOP FOR 2 WEEKS STRAIGHT (I know thats not alot but I really need to know what to do)
    Please and thank you

    One way to do it, is to go into my computerand open your iPod so that you can see hidden files and folders, and then to select all songs and just simply drag them to the iTunes library.
    Much easier ways are to use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music and playlists etc from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.
    There is also CopyPod. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.

  • Need HELP with sync settings foe nokia E51

    Nokia E51
    Hi, i am trying to setup the syc setting so i can attempt to transfer my contacts to my cars bluetooth, i have looked at some suggestions but they dont seem to work.
    This is how far i am at the moment.
    FIRST PAGE
    INCLUDE IN SYNC - YES
    DATABASE IN PHONE - C:contacts.cdb
    REMOTE DATABASE - i am not sure what to put here it will not accept any wording and has a little red star next to if i try to.
    SYNCHRONISATION TYPE - Both ways
    SECOND PAGE
    SERVER VERSION - 1.1
    DATA BEARER - Bluetooth
    HOST ADDRESS - as above i am not sure what to put in here and it will not accept any wording
    USER NAME - Not sure what to put here either
    PASSWORD - ****
    ALLOW SYNC REQUESTS - Yes
    ACCEPT ALL SYNC REQUESTS - Yes
    Any help would be appreciated as i have tried everything to transfer my contacts but cant get it to work
    Mark

    Hi eden100990
    No problems with this link at time of posting: http://europe.nokia.com/A41423552
    Happy to have helped forum in a small way with a Support Ratio = 37.0

Maybe you are looking for