Need help with itunes problem

I just installed itunes version 7.6.2 and I plugged my ipod into my computer and hit the restore button so i can erase and redo my ipod. Then when I plugged my ipod into my computer my ipod is stuck on the restore mode and i can't see the information bar or the music bar under my ipod name. I can only upload music and eject my ipod. PLEASE HELP!!! this is so fustrating.
this is what the screen looks like when i click on my ipod or plug it in.

Glad you got it sorted!

Similar Messages

  • Need help with Itunes problem not being able to put custom made ringtone on iphone 4s.

    My iphone 4s is running iOS7. My windows laptop is running the latest version of itunes, i follow instructions everywhere to get the ringtone i made onto my cellphone and i get stuck where it says to go to the apps tab and then scroll down till you see the apps you have and choose the app that you made the ringtone with. Well when i select apps it just goes to the app store, it doesn't do anything else. How in the world do i get that to come up so i can move the ringtone from the app to my phone??? please help!

    Although WAV files have the same audio coding as an audio CD, a disc full of WAV files does not act like an audio CD; it lacks the indexing and ToC needed in order for a "regular" CD player to play it. As Diane notes, put your WAV files in an iTunes playlist and burn it as an *audio CD.*

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

  • Cannot contact Apple, need help with iTunes & Registration?

    1, The number provided does not work outside the US.
    2, The number for Thailand doesn't work either.
    Serial number: C02KJ0xxxxxxx
    Technical Support says is  Expired ???
    3, Can can tech support be expired on a 3 day old machine?
    4, Why won't it register on the website?
    What a nightmare. I want to register my 3 day old computer but you say tech support has expired.
    I'm in Thailand and cannot call your support number. Its the number is incorrect.
    Really need some help with iTunes can someone help me? OK to pay but I really really need some support.
    Jason

    First, have you moved or renamed the iTunes or iTunes Music folders, or any of the folder or track files in those folders, since iTunes last worked correctly?

  • Please I Need Help With iTunes..!!

    Hi I am New In This Forum and I hope I Could Find The Help I Was Not Able To Find and Get at Apple Store / Support Dept Lots Of Times I Call Them Over The The Phone I Am Not Kidding When Say Probably 10-15 Times, Plus The Times I Went Ahead To One Nearest Apple Store To My House For The Same and The Only Unique Problem That I Been Complaining For The Last 6-8 Months....Error Messages Like This >>  iTunes : ERROR REQ Could Not Be Completed, Item You've Requested  Is Not Currently Available In The U.S Store...!!! I Really Don't Understand it what Happen I Was Using Before For Years, I Have Like 5,000 Songs and Videos, Movies, Pictures etc, I Mean I Was Able To Use it, I Can't Not Even Have Access To Login To My Account at All Either..and APPLE STORE, They Just Told Sorry They Don't Know What's Wrong With it Don't Know How To Help Me..
    My INFO IS: MacBook Pro 2010-2011
    MAC OS X
    VERSION: 10.8.2
    PROCESSOR: 2.4 GHz INTEL CORE 2DUO
    MEMORY: 4 GB 1867 MHz DDR8
    STARUP DISK: MACINTASH HD
    I Really Hope There's Someone Who Might Be Able To Help Me Out, To Resolve This Issue Or I am Going To Be Go Crazy About This Issue With iTunes...The Matters is That For Therapy I Really Need My Music and Its Not a Joke Music Its My Therapy Some How...Long Story...
    Once Again Thank You. God Bless You All
    Irene/[email protected]

    Windows doesn't detect iPhone: http://support.apple.com/kb/ts1538

  • Need help with Itunes Authorization issue

    I've been a Itunes/Ipod user for a couple years. During that time, I've sure spent over $500.00 on Itunes music from the Itunes store for my Ipod. My daugter and I both have Ipods.. There have only been 2 machines with Itunes installed here but I occasionally rebuild my computers to have the latest and greatest hardware for my business.. The other day I backed up all my music and data before rebuilding my machine due to hardware upgrades. Everything went smoothly including importing my purchased music back into Itunes.. The problem is I can't listen to it now. When I try to double click a song I get an error that says "You have already authorized 5 computers with this account. To authorize this computer you must first deauthorize one of the other computers" This isn't possible because the computers aren't around anymore to deauthorize. They were all housed (except 1, my daughters pc) in the same case as I have now.. Please respond...

    The other day I backed up all my music and data before rebuilding my machine due to hardware upgrades.
    okay. you may have ended up with multiple authorisations on that PC due to the system changes. if so the following documents should be of some help with techniques for freeing up authorisations:
    One computer using multiple iTunes Music Store authorizations
    About iTunes Store authorization and deauthorization

  • I need help with iTunes. I just bought a new laptop and I have a few questions

    So I  just bought a new laptop and few days ago. It's an HP. I have the iPhone 4 (8GB). So all my songs from iCloud are on my phone. I want to manually put them on my phone. All of my songs, videos, pictures etc. are on my new laptop. I went to apply the changes on iTunes when I selected "Manually manage music and videos". And a message came up saying "This iPhone is synced with another iTunes library on another PC. Do you want to choose to erase this iPhone and sync with this iTunes library?" Under that it says "Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So what do I do? I don't want to click sync and loose everything on my phone. I will no longer use the other comuter. I really need help.
    Thank you!

    There are some instructions on this page for syncing to a new computer : https://discussions.apple.com/docs/DOC-3141
    You should be able to copy iTunes purchased music from the phone via File > Devices > Transfer Purchases
    If you still have your old computer and you haven't copied your library over form it, then there are also some methods listed on this page about how you could copy it over : http://support.apple.com/kb/HT4527 - the page refers to music, but I've used the home sharing method to copy apps, films etc between computers.

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

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

  • New laptop need help with itunes.

    okay so i got a new laptop for xmas and i want to transfer my songs from my old desktop to my laptop. is there a way i can load my ipod onto my laptop and use that to transfer songs.
    my friend said that when i plug in my ipod to my blank itunes it will erase my songs. is there a way to download my songs to my laptop from my ipod?
    i really need help!
    THanks for the help.
    xo kaiit
    windows dell Windows XP

    Your friend is right. the iPod cannot be used to update iTunes. I had the same problem about a year ago, and I just transferred each song using my jumpdrive. It's painstakingly boring, but it will work without wiping anything clean.

  • Need help with itunes iphone update

    When I try to sync my iphone 4 with ios 7 to itunes for windows, I also receive the "can't use devise...requires itunes 11.1 or higher". I am advised to download this version at itunes.com. However, when I follow the link, I am not allowed to download b/c my phone already has itunes installed on it. The download link offers no tab or lik for either updating or downloading any new software. What am I missing? BTW, my pc is updated with itunes 11.1.

    Same problem here. It shows up under devices but there is no "page" for it. No tabs, music, apps, nothing.

  • I need help with itunes for windows 7.

    wondering if any one can help? i am running windows 7 and i recently had trouble with itunes it used to open and work, when i recieved my new iphone itunes decided not to open any more i tried un-install and re-install and it didnt work i reset my laptop back to its factory settings and re-installed itunes it worked for that day then went wrong again. i have tried doing apple software update and it comes up with error and some numbers followed by cc. if i try and re-install itunes it says invalid right to use bonjour.
    any help? thanks

    I have absolutely no idea who Ari is
    It appears you do not know how to use this forum
    To reply back to Ari, you should have done that on the same thread so that he can see it
    Yes, you can call Apple if you are willing to pay for it
    Allan

Maybe you are looking for

  • Hi all issues with iphone 4 after update apple recovery iboot USB driver access denied have tried everything I can find and can't get it to work pulling my hair out

    Hi everyone Need some help desperately Was syncing my iphone through itunes and it wanted me to update the version which I thought it did Now my phone keeps telling me to connect to itunes which I have tried without success. In device manager it's sh

  • Need help with choosing a PSU

    hey guys, i need some help with choosing a right PSU for my gaming rig.  i plan on doing some overclocking for the first time, and from what i understand the regular no name PSU that came with my case just won't be enough.  so here is what i'm curren

  • Mba-2012 freezes, ways to diagnost

    Hello all! Here is my situation: - 13 inch mba 2012, i7 2.0, 8GB, 256GB - lastest OS X with the lastest update available on this moment - freezes from time to time. From time to time means 3-4 per month, or 1 per 2 month, randomly but not very often.

  • Change layout for Version overview?!?

    Hi I need to add two extra columns in the version overview display (an example look at http://hotbucket.dk/version.jpg) is this possible through a layoutset or is this view embedded in a class file? Thanks in advance Cheers John

  • DFW Rollout Schedule

    I was hoping someone could tell me if there are any plans to bring FiOS to Arlington, TX. Many of the other suburbs of DFW have it, and Arlington is the most important one. It's got the Rangers' baseball stadium, the new Cowboys' football stadium, an