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

Similar Messages

  • 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 'Video' selection on iPod

    I have a 30g iPod 5th generation, and I try to download some videos, but when I try to watch them on my iPod, they just play the sound, and don't show the video screen. They are in the mp4 format, if that is the problem. If anyone knows what the problem is, please help me.
    Thanks so much

    Does this article contain anything useful?
    (28691)

  • Need Help With Download For Airport Express

    Ok, computer dummy here needing help with airport express. We were given airport express last night from a friend who recently purchased a newer gadget. He told us we would need to come here to download the operating system. I see lots of links to updates but no links for someone like me who has never had anything like this on my computer before. Does anyone know what link I would need to use? We have a pc with windows XP. Thanks so much for your help!

    Hello jesschambers. Welcome to the Apple Discussions!
    The AirPort Express Base Station (AX) doesn't have an "operating system" per se, but it does have built-in firmware which pretty much is the same thing. In addition, in order to administer the AX, you will need the AirPort Admin Utility for your Windows PC.
    Here are the links for the latest versions of both:
    o AirPort Express Firmware Update 6.3 for Windows
    o AirPort 4.2 for Windows

  • 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.

  • Hey I need help with my new Video Ipod haha

    Hey whats up.. i need help.. i want to put some movies on my ipod from my computer.. but they wont go into itunes.. i need to find a converter to convert some divx movies and vlc what converter should i download???

    you've posted in the wrong section of this board..
    for support of iPod users on Windows, please ask the experts here:
    http://discussions.apple.com/forum.jspa?forumID=807
    iMovie is the video edit app, that comes free and exclusively on every Mac...

  • Need help with download

    HELP! During download I am getting message "Internet Explorer
    has blocked this site from using ActiveX control in an unsafe
    manner. As a result this page may not display correctly." How can I
    procede with download of Adobe Flash? I'm not too computer savy but
    I am great at following directions! Thanks

    Click on the bar that appears at the top of the Internet
    Explorer window &
    select Allow ActiveX control from the menu that appears.
    "styxfan" <[email protected]> wrote in
    message
    news:f7uhpi$qvs$[email protected]..
    > HELP! During download I am getting message "Internet
    Explorer has blocked
    > this
    > site from using ActiveX control in an unsafe manner. As
    a result this
    > page
    > may not display correctly." How can I procede with
    download of Adobe
    > Flash?
    > I'm not too computer savy but I am great at following
    directions! Thanks
    >

  • 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.

  • Can you help with Download  Problem

    Trying to download Adobe Reader to Mac OSX 10.8.2.  Keep getting window that says 'waiting for other installations to complete...'  But nothing happens.....Help!

    Download from the below location. Hope this will work
    ftp://ftp.adobe.com/pub/adobe/reader/mac/11.x/11.0.01/
    Regards,
    Deepak

  • I Need Someone Personal Step By Step Help With Download Dvd to IPOD

    I Have 4 program on my Computer I need to know which program will help me to get the DVD Over to my IPOD. I have Quicktime 7 Pro
    Videora IPOD Converter
    Amazon DVD shrinker
    Inter Video DVD Copy 4
    Please help me out. How To Convert them over so it can wshow on my IPOD PLEASE list step by step Thank You

    I use dvd decrypter though you may find it hard to come by since they were just bought. Then I use a program called Xilisoft (www.xilisoft.com) to convert. I convert to psp format as they share the same format (the psp requires you to have a .thm file as well). IF you want your file to be one movie file instead of individual .vob files, you will want to change you use DVDDecrypter the mode to ifo.Then you will want to right click on the pgc file on the right and go down to file splitting and select none. After that you need to click on stream processing and enable it. Deselct all options except for the top 2 (usually video and audio - you can play around with the audio but I find those 2 to be best. Xilisoft is self explanitory but if you can't figure it out, I suggest you Google it.
    Remember, it is only legal to back up your own DVD's.

  • I need help with a problem with an iPod nano 4th generation..

    I recently bought new songs from itunes and some aren't showing up in my library when I know I purchased them and some aren't playing all the way through.

    Here is how to do it yourself.
    http://www.youtube.com/watch?v=2h53otOBTsI
    Here is how to send it to apple.
    http://www.apple.com/support/ipod/service/battery/
    Hope this helps!

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

Maybe you are looking for

  • Using Methods not Defined in a class that you are calling them from

    For one of my assignment I have had to create a class with methods and then create another class to test the methods. I keep getting the error message "cannot resolve symbol" And the error points to the line where I am calling the class. I have put t

  • Syncing apps to ipad

    I have several apps which appear on Ipad home screen but have "Waiting"  underneath the icon. One is Google Maps. When I try to sync it goes so far through the process then stops saying "Cancelling sync" I've tried re-booting, removing 3rd party apps

  • SWE3- Help needed to include a check FM

    Hi All,    I am trying to include a check function module for the instance linkage of IDOCORDERS.INPUTFINISHED through SWE3 transaction.  I get the error that "Parameter SENDER not found". My FM just has a wait statement in it.Is there a standard for

  • Unable to change My BT Logon address

    My colleage has changed from Tiscali to BT - generally OK but he seems stuck with emails showing tiscali.co.uk in spite of the fact that he is now definitely on BT infinity broadband and using BT mail system. To log into My BT, he has to type a user

  • SAP PS- Assembly Processing

    Hi all What is a methodology that system create operative network from Sale order . What is required field to maintain in Sale order? How systme identify that which Network template to pick at the time of mapping .? what is relation between sale orde