Ipod won't stop trying to turn off.

As the title says, My Ipod touch will not stop trying to turn off.
I held down the power button, then slid the key to turn off.
Now it has that small circle in the center that spins usually indicating that its processing, working, thinking, etc. and it will not just turn off.
Please help

1. Settings > General > Reset > Reset All Settings
2. Restore using iTunes, also restoring a backup
3. Restore as new, without using a backup
Use iTunes to restore your iOS device to factory settings
4. If restoring as new doesn't help, there is a hardware problem that needs evaluation by Apple or an Apple authorized service provider.

Similar Messages

  • Streaming audio data won't stop unless I turn off the phone for 5 minutes.

    I have been testing the Curve 8330 regarding streaming audio from an icecast server. The address of the station is http://www.AirProgressive.org, click on "listen". (I have already run this by the icecast experts and they say it is a Blackberry "bug")
    BLACKBERRY USERS! PLEASE BE AWARE THAT THE STREAM (dataflow) DOES NOT STOP WHEN YOU CLICK "STOP" ON THE MEDIA PLAYER! (and will continue for as long as you leave it on, and even if you turn off your BB for less than 5 Minutes.) I'm not sure if you are charged for these streams, but it seems that the battery is depleted rapidly if this continues without aborting it. See details of my testing below:
    > Access icecast stream by clicking on the link on the website:
         http://www.airprogressive.org:8000/stream.m3u
    > Stream consists of mp3 at 32kbps / 22050 Hz.
    > Stock media player launches, stops at "Do you want to open or save the item."
        > No connections started yet (viewing "List Clients" page of icecast admin interface).
    > Click "open", stream begins playing.
    > Two connections are started instead of just one, always offset by 2 seconds.
        -- but sometimes only one connection starts.
    > FYI, Icecast config: <client-timeout>30</client-timeout>
    Here is the output from the "List Clients" page of Icecast2 Admin
    IP
    Seconds Connected
    User Agent
    Action
    68.7.238.55
    406
    WinampMPEG/5.62, Ultravox/2.1
    Kick
    74.82.68.16
    6
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.16
    4
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    Note the last two entries with the same IP address. This is the Blackberry. Top entry is winamp player on PC for reference. Don't know why two listener connections are generated.
    > Stream is "Stopped" (i.e. click stop)
    > Stream is restarted (i.e. click Play)
    > A new connection is started, this time with a new +1 IP address.
    IP
    Seconds Connected
    User Agent
    Action
    68.7.238.55
    687
    WinampMPEG/5.62, Ultravox/2.1
    Kick
    74.82.68.16
    287
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.16
    285
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.17
    8
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    I can understand that the player may continue to communicate when "stopped" to fill the lookahead buffer, but when it is restarted, it should use the same connection and not start a new one.
    > Click Stop.
    > Click Play.
    IP
    Seconds Connected
    User Agent
    Action
    68.7.238.55
    803
    WinampMPEG/5.62, Ultravox/2.1
    Kick
    74.82.68.16
    403
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.16
    401
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.17
    124
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.18
    24
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    > Yet another connection is started with a new "listener".
    > Click "back" to exit from browser in Blackberry.
    > All threads continue.
        --> I have tested this many times and the threads continue without being cleaned up indefinitely, even though the player is stopped and the stream is not "playing" on the handset.
    > Turn off mobile network. Handset not communicating.
    > Threads continue
    > Handheld turned off.
    IP
    Seconds Connected
    User Agent
    Action
    68.7.238.55
    995
    WinampMPEG/5.62, Ultravox/2.1
    Kick
    74.82.68.16
    595
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.16
    593
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.17
    316
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    74.82.68.18
    216
    Mozilla/4.8 [en] (Windows NT 5.0; U)
    Kick
    Finally, after over 300 seconds, the threads are finally cleaned up.
    IP
    Seconds Connected
    User Agent
    Action
    68.7.238.55
    1139
    WinampMPEG/5.62, Ultravox/2.1
    Kick
    So, to stop the streaming server from communicating with the Blackberry handset, you must either turn it off or disable mobile network for at least 5 minutes.
    It appears that the handset continues to transfer data (and therefore incur charges, if the user does not have an unlimited data plan) if the handset is not turned off or mobile network disabled for at least five minutes. It also runs down the battery much faster because the radio transmitter is actively being used, even if the user is not listening to the stream.
    The Blackberry network has intervening servers that continue to receive data from the streaming server even if the handset is off. This behavior likely has utility to deal with the realities of the cellphone network, to allow the stream to be transferred from one cell to another, and deal with the possibility that the handset may be out of range for up to 5 minutes without "interruption." However, it is hard to turn off the stream.
    QUESTIONS:
    1. Is there a way to stop this sort of behavior using a configuration setting or something? It seems particularly stupid to start a new stream connection each time a STOP/START cycle is completed, allowing the old connections to continue streaming data (even if the data does not make it to the handset).
    2. IS IT TRUE that the user will be "charged" for the data streams that are not disconnected?
    3. Is there a way for a developer to send a signal to the intervening cellphone network to discontinue the orphan streams?
    THANKS!!

    No, I'm using something like this :
    to start...
                       channel = new SoundChannel();
                                            soundPlay = new Sound();
                                            urlReq=new URLRequest;
                                            urlReq.url=mylUrl;  // url of radio mp3
                                            soundPlay.load(urlReq);
                       channel = soundPlay.play();
    to stop it...
                          channel.stop();
                          channel=null;
                          try{soundPlay.close();} catch (e:Error) {} // error or not, the sream won't stop.
    Any idea ? Did you try with a NetStream object ?
    Bernard

  • IPhone won't stop trying to turn itself off

    My iPhone has been acting very strange recently. Try's to turn itself off randomly, well fade in and out real fast so I don't go on it for the time being. And if I touch my lock button once it will automatically try to turn itself off again. How do I get rid of this

    1. Settings > General > Reset > Reset All Settings
    2. Restore using iTunes, also restoring a backup
    3. Restore as new, without using a backup
    Use iTunes to restore your iOS device to factory settings
    4. If restoring as new doesn't help, there is a hardware problem that needs evaluation by Apple or an Apple authorized service provider.

  • My Ipod touch keeps trying to turn off.

    Cannot get my Ipod touch to stop trying to turn off.  The slide to turn off screen keeps popping up.  Have turned off, hard reboot, restored and not helping.  Makes clicking sounds as if it taking a picture, but do not have picture capabilities.  Any suggestions? 

    I had a similar problem with my iPhone 4 n probably due to bit of moisture.
    I kept on pressing the power button again n again n then switched it off completely for like 20 min.
    When I restarted, it was all fine.... I think pressing the power button repeatedly helped it to reposition the power button..
    Odd but effective

  • I tried to turn off VoiceOver with my iPod touch

    I tried to turn off voice over with my iPod by plugging it in to my Mac but it says that because there is a passcode on there I cannot get in to my iPod and I will not wipe it out. What do I do?!?? I cannot get VoiceOver off

    Hi,
         If you wish to have voice over off then follow these directions.
    Directions:
    1. Go to settings
    2. Go to general
    3. Scroll down and go to accessibility.
    4. The first thing should give you the option to enable or disable VO
           Simple!!!!!!!   

  • While i was updating my ipod touch it had an error and froze at the apple logo with a loading bar underneath.How do I fix it? Its stuck there,  tried everything, turn off button home screen button even the volume buttons, nothing is working.

    I was updating my ipod touch and the updation had an error and it froze at the apple logo with the loading bar underneath. How do I fix it? I tried the turn off button home screen button and even the volume buttons. I cant get anything to work. Please help me.

    Connect to itunes and retore.

  • Hello.It is me again with the ipod touch. I tried to turn it off or to reset it but nothing.Whar can i do ?, Hello.It is me again with the ipod touch. I tried to turn it off or to reset it but nothing.Whar can i do ?

    Hello.It is me again with the ipod touch. I tried to turn it off or to reset it but nothing.Whar can i do ?, Hello.It is me again with the ipod touch. I tried to turn it off or to reset it but nothing.What can I do ?

    This cable And Im using a cable that has a headphone jack on one end and RCA cables on the other. does not work for iPod touches. See:
    http://support.apple.com/kb/HT1454

  • Trying to turn off spotlight because it's a resource hog.  open terminal and enter command but it won't respond or even ask for password.

    trying to turn off spotlight because it's a resource hog.  open terminal and enter command but it won't respond or even ask for password.

    Step #1:
    In System Preferences click on Spotlight.
    Step #2:
    Click on the Privacy tab here.
    Step #3:
    Click on the + button here and when the window opens click on "Macintosh HD" (or whatever you've named your HD) and then click the Choose button.

  • What should I do if my iPod is trying to turn off for 1hour?

    It all started when I noticed that some of my apps weren't working, since this had happened before I went to the app store>updates and noticed that I'd have to update apps that were updated before. Since this'd happened before I turned off my Ipod and then came the troubles because my iPod still is trying to turn off I mean it just has the circle thing that goes around and around in a circle, and it's been going on for like an hour now. What should I do. Is my ipod defective?

    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.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • My ipod nano 2nd generation will not turn off, would i be able to get it replaced

    My ipod nano 2nd generation will not turn off, could i fix or replace this ?

    What do you mean it won't turn off?  How are you trying to turn it off?
    B-rock

  • While in email today, the computer began flashing. I had to turn off with button. When I turned it back on, I got the apple icon and the moving loading wheel. It would turn for about 60 seconds and then stop. I turned off again. I now have a black screen.

    while in email today, the computer began flashing. I had to turn off with button. When I turned it back on, I got the apple icon and the moving loading wheel. It would turn for about 60 seconds and then stop. I turned off again. I now have a black screen.

    Hi wiesenruth,
    If you are having issues starting up or booting your computer, you may find the following articles helpful:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/TS1367
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/kb/ts2570
    Regards,
    - Brenden

  • HT4901 trying to turn off calendars in Icloud

    I am attempting to backup my 4S to Icloud and continually fail since updating to ios6. I am now trying to turn off Calendars in Icloud with no success. I check to turn off Calendars and it begins to run but never succeeds and eventually fails with out turning off the Calendars. Any Suggestions?

    Can you be more specific?  The iCloud "backup menu" is in Settings>iCloud>Storage & Backup>Manage Storage, then tap the name of your device under "Backups".  You won't see "Calendar" listed under Backup Options because the calendar is not part of the iCloud backup. 
    So where, exactly, are you trying to turn off Calendars (in what menu)?

  • I'm having problem with my iphone4S first when i updated software to 7.1 after a month or so wifi turned grayed, second when i tried to turn off in the night as soon as i turn it on battery empty now its totaly dead. What should i do with it?

    I'm having problem with my iphone4S first when i updated software to 7.1 after a month or so wifi turned grayed, second when i tried to turn off in the night as soon as i turn it on battery empty now its totaly dead. What should i do with it?

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • My ipod touch is froze and wont turn off. any ideas?

    My ipod touch is frozen and wont turn off. I need help everything ive tried isnt working!

    Just had this similiar issue with my iPod.  Simple steps found through the Apple Support Website. Follow this link:http://support.apple.com/kb/HT1320, or follow instructions listed below to reset a frozen iPod nano/classic/color display/click-wheel, etc.:
    1) Toggle the Hold switch on and then off. (Slide it to Hold, then turn it off again)
    2) Press and hold the Menu and center buttons simultaneously until the Apple logo appears, about 6 to 8 seconds.  This step may need to be repeated. (*sidenote...I also found that the iPod would not respond/reset when it was connected to my computer. It just continued to state that it was connected and needed to be ejected before disconnecting.  I pulled the link cable out of the frozen iPod and followed the above steps and it reset normally.)
    Hope this helps...
    -word up
    ~Dmngreen

  • I turned on my icloud account but suddenly some of my contacts disappeared ... I tried to turn off and delete icloud account but still some of my numbers are unreachable ... Help pls

    I turned on my icloud account but suddenly some of my contacts disappeared ... I tried to turn off and delete icloud account but still some of my numbers are unreachable ... Help pls

    Hi Prince,
    OK, so you did turn on PhotoStream on your device. On iCloud.com there is no setting for PhotoStream - it is not needed. PhotoStream only get "turned on" on a device or a computer (in the computer settings - not on the website).
    So, once it is turned on, you take a picture, and it may take a few minutes before you see it in the PhotoStream on your phone. If you take a couple of pics and they don't show up, say within a half an hour, then you might want to do a reset on your phone (press the Home and Power buttons at the same time, and hold them down until the silver Apple appears - you won't lose anything by doing this....) Once it comes back up, you could try a couple more pics, or check the PhotoStream to see if the ones you took previously are there.
    Not sure about the option at the bottom of the Photo App - I think it is a permanent item (like Places - I don't use Places for my photos, but it is there all the same.
    I agree with you that it is a great backup for your photos - especially if you don't regularly sync to a computer. PhotoStream will keep up to 1000 of your photos, so it's good insurance against losing them. Just as a major user of the camera on my iPhone, I would recommend that you do back up to your computer as well. Videos are not saved in PhotoStream, so those would be lost if anything ever happened to your phone and you had not backed up to a computer....
    But don't give up on PhotoStream either - it's not only great for backing up those last 1000 photos, it is also great for sharing between devices (say, if you have an iPad).
    So, give it another try, and if you have any questions, post back!
    Cheers,
    GB

Maybe you are looking for

  • Why does animated .gif not work with windows?

    I have created an animated .gif to place in a powerpoint presentation, but when I sent it to my client who used a windows computer, it does not work. When I try to open the .gif in my windows 98 virtual machine, it says it has errors. I created it in

  • BlackBerry Messenger version 7.0.1.23 Fault

    I have a BlackBerry 9360 (3G, Wi-Fi), 7.1 bundle 1717 (v7.1.0.569, Platform 9.6.0.86), BlackBerry Messenger version 7.0.1.23 The team originally had the version of BlackBerry OS 6 operating system, for months to upgrade to the latest available for th

  • What is the best standard SoundFont file for SB Audigy

    There are 2 soundfont files come with the installation software. They are CT2MGM.SF2 and CT4MGM.SF2. CT2MGM.SF2 has a smaller file size (2 MB) but has a newer soundfont version (v 2.) while CT4MGM.SF2 has a larger file size (4 MB) but has an older so

  • How do I transfer Acrobat X Pro from my old to my new laptop

    Please help

  • AP and AR cycles

    Hi, can anybody briefly expalin me the AP and AR cycles individually and tell me when and or where we triggered them in oracle applications.and you can send it to my mail id - [email protected] thanks in advance. regards gb prasad