IPad 2 update/firmware 6.1.3 status bar stuck

It won't let me update the iPad to the newest update.
The apple logo and status bar screen comes up, but it gets stuck around 10% everytime.
It's already in DFU mode.
Any help would be appreciated.

I'm saying to wait a bit longer. If it were mine, I would want it to work in every aspect and fashion. I will ocassionaly have connection issues on mine, but only occasionally. I can usually resolve them on the spot.
It sounds odd to me that it would start working with your home network all of suddent without making any changes. However, I've had similiar experiences with computers and electronic devices in general. Having trouble connecting to one particular network, other than at home, would be something that I could live with. Having trouble with many, I could not live with.
How did you restore it last time? If you used itunes then try directly on the ipad. Do the opposite of what you did before.
Be aware, this might put you back at square one again with the wifi issue at home.
But if it were me, I would restore back to factory settings again, just to satisfy my own curiousity.
How to restore
Via itunes
http://support.apple.com/kb/HT1414
via device
settings/general/reset/erase all content and settings

Similar Messages

  • When syncing my iPad mini I notice "Other" in the status bar. What is that and how do I get rid of it?

    When syncing my iPad Mini I notice "other" in the status bar.  It is taking over 4gb of space. What is "Other" and how do I get rid of it.

    Lock symbol is rotation lock : depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can lock rotation either by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • Updating the Line number on status bar.

    Hi all,
    I have developed an editor using swing, however I have used the JTextpane class to display the text. I had did of trouble with features such as go to line as this class does not support methods such as getLineCount in the JTextArea class. However I over came this by writing the method shown below.
    The problem is that I want to show the current line number on the status bar. When do I call this method? After every '\n'?
    The setLine Number method is below.
    Thanks for your help
    Ciara
    public void setLineNumber(int num) {
    int lineNum = 1;
    int lastNewline = 0;
    char text[] = editor.getText().toCharArray();
    if (num < 1)
    return;
    if (num == 1) {
    editor.setCaretPosition(0);
    return;
    int i;
    for (i = 0; i < text.length; i++) {
         if (text[i] == '\n') {
         lastNewline = i;
         lineNum++;
         if (num == lineNum) {
         editor.requestFocus();
         editor.setCaretPosition(lastNewline + 1);
         return;
    }     

    Perhaps extending a PlainDocument is better, if line
    numbers are meaningful for your application.
    About your method, mind that getText can be quite dear,
    so it is better not to call it if you don't need it.
    For a more efficient alternative, look at Document.getText(int offset, int length, Segment txt)It uses a Segment (un unguarded string) pointing directly
    into the document, which you can use much like a char
    array.
    As to your question, I would define a CaretListener
    so as to update the status bar when the caret moves.

  • [SOLVED] Problem with adding package update count to dwm's status bar

    Following http://www.andreascarpino.it/blog/posts … s-part-ii/, I added:
    $ crontab -l
    */10 * * * * ~/bin/tempdb
    Along with
    #!/bin/bash
    # ~/bin/tempdb
    fakedb=/dev/shm/fakepacdb
    realdb=/var/lib/pacman
    [[ ! -d $fakedb ]] && { mkdir -p "$fakedb/sync" || exit 1; }
    [[ ! -L $fakedb/local ]] && { ln -s "$realdb/local" "$fakedb" || exit 2; }
    exec fakeroot pacman --dbpath "$fakedb" -Sy
    pkgs=$(pacman --dbpath "$fakedb" -Qqu | wc -l)
    aurpkgs=$(cower -udf 2> /dev/null | wc -l)
    unset msg1
    unset msg2
    unset packages
    msg1="pacman: 0"
    msg2="aur: 0"
    if [[ ${pkgs} -gt 0 ]]; then
    msg1="pacman: ${pkgs}"
    fi
    if [[ ${aurpkgs} -gt 0 ]]; then
    msg2="aur: ${aurpkgs}"
    fi
    updb="UPDB: ${msg1}, ${msg2}"
    export updb
    The problems is with being able to export the variable updb, because exporting only exports to subshells. I also have my ~/bin/dwmstatus script:
    #!/bin/bash
    sep=" | "
    volsep="VOL"
    datesep="DATE"
    timesep="TIME"
    vol=$(amixer get Master | tail -1 | sed 's/.*\[\([0-9]*%\)\].*/\1/')
    volstat=$(amixer get Master | tail -n 1 | cut -d' ' -f 8-)
    sdate=$(date +"%B %d")
    stime=$(date +"%r")
    if [[ ${volstat} == "[off]" ]];
    then
    vol="--%"
    fi
    out="${updb} ${sep} ${volsep} ${vol} ${sep} ${datesep} ${sdate} ${sep} ${timesep} ${stime}"
    xsetroot -name "${out}"
    I only want the checking of updates to occur every few minutes (for now I tried 10), and just using the exported variable that contains the whole
    "UPDB: pacman:3, aur:1",..
    I'm not exactly sure how to fix my hacked-together scripts. When I simply run the tempdb script, it doesn't do much exept for updating to the fake database, but being able to use the updb variable has not worked yet. I also tried sourcing the script, but that just quits urxvt when running in dwm, and it logs me out when sourcing from plain X.
    I guess my main question is: what is the best way to show updates from the dwm status bar, or how can I fix what I am trying to do now?
    Last edited by wolfcore (2012-03-17 00:21:47)

    jasonwryan wrote:
    I use this:
    crontab -e
    @hourly /home/jason/Scripts/checkupdates
    grep ups Scripts/dwm-status
    ups(){
    ups="$(/tmp/aurupdates | wc -l)"
    if [ $ups = 0 ]; then
    echo "0"
    else echo -en "$ups"
    fi
    Script is keenerd's from here: http://www.mail-archive.com/pacman-dev@ … 08405.html
    Okay, I see it. But your ups() function checks /tmp/aurupdates; how do you check for AUR updates? I looked at your repos, and saw
    pac()
    pup="$(pacman -Qqu --dbpath /tmp/checkup-db-jason/ | wc -l)"
    if [ $pup == 0 ]; then
    echo "0"
    else
    echo -en "\x05$pup\x01"
    fi
    This is what you use along with keenerd's checkupdates, right?

  • Ipad smart cover auto unlock clock and status bar issue after ios7

    Im using an ipad mini with apples smart cover (auto lock/unlock enabled), it used to show the lockscreen(before swipe) whenever I opened the case, but after ios7,whenever I open the case,its already swiped and I have tu enter my code.
    the bug is that you have no clock in the status bar on the code screen. whichs forces you to enter your code each time you open the cover just for checking the time! or swiping back to the lockscreen. 
    any fixes?

    I know.. it was better in iOS 6..
    To make the clock (time) appear without entering the code simply Tap the Screen once.
    For example:
    While holding the ipad in the landscape position peel the cover open just enough to get your thumb under the cover and tap just below the battery indicator.
    See this related discussion too.. https://discussions.apple.com/message/23981258#23981258

  • App for audio recording on ipad that doesn't have the red status bar.

    I need an app that still records audio but doesn't have the red status bar that shows I'm still recording when I exit the app. Does it exist? I have heard apple apps require the red status bar to be there.

    You need to have the capability to export the presentation in a format your teacher can use. Ask your teacher what format she wants the presentation in. If she wants PDF then you have to send her a PDF file. If she wants something else send her the presentation in that format.
    Be warned that not all apps supporting opening presentations preserve or support all layut and formatting. The best approach to ensure your presentation looks as you intended when she opens it is to write it in the same app she will be viewing it.
    It is not unreasonable for the teacher to specify a format/application. Otherwise a teacher with 100 students could find herself having to deal with multiple apps, formats, standards, layouts, being sent to her.

  • IPhone 4S did not finish updating firmware ios 7.1.2 and stuck at apple logo with status bar.

    I Have iPhone 4S and Ipad mini w/ retina and updated both with the latest firmware of ios 7.1.2 during the 4th of July. The ipad mini finished in just less than 10 mins, however, the iphone is stuck installing the firmware and can't even use at all. I tried restarting the phone but no avail. Can someone help me back my phone to working condition?

    Press and hold power button down and menu button together and wait for Apple logo then wait do not touch red slider
    you will not lose any data.
    BSydd uk

  • Status bar disappears in iPhone apps running on iPad

    I would like to confirm whether this is considered a bug or not.
    Pick an iPhone app (for example, Foursquare) and open it using an iPad. You will notice that the status bar (the area that takes the whole app view width and that is 20pt high). Send it to background, then open the task switcher (sorry, I don't know its exact name). You will see that the preview image for that app has the status bar visible, however when you tap on it and the app is resumed you will also notice how it suddenly disappears.
    Please confirm whether this is happening to you. This annoys me a lot since I'm currently developing an iPhone app and I only have an iPad to test it, so what I am seeing is no longer exactly the same that is usually seen in an iPhone (well, a 3.5 inch iPhone). I'm using iOS 7.0.4

    Hi, I'd like to tell you a good news. This issue had been resolved by using a single line configuration in Info.plist file. After testing it does work fine for me.
    Try it:
              <key>UIViewControllerBasedStatusBarAppearance</key>
              <false/>

  • I am trying to add tracks which I have on my library on my computer to my ipad. I have done this manually but teh status bar never gets beyond "preparing to update". I have used itunes for years but never had this problem before

    I am trying to add tracks which I have on my itunes library on my pc to my ipad. I have done this manually but the status bar never gets beyond "preparing to update". I have used itunes for years but never had this problem before

    When I restart my iPad the connect to iTunes comes up and stays on until it shuts down again, I have read a report from Apple support suggesting I reinstall iTunes so I might try that again and also your suggestion which i shall also try, but thanks again - rg1547

  • Download the same update firmware of iPad again and again

    I had downloaded the update firmware of iPad, when I back home, I clicked on the new firmware and tried to update my iPad, but iTunes asked me to re-download the firmware again. Even I's sure that it's the same firmware.

    This issue can be caused by corrupted cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    * https://support.mozilla.com/kb/Cannot+log+in+to+websites

  • Hi.. IOS 6..1.1 is downloaded in my ipad 3.. then i clicked to install. ipad restarted with an apple icon and a status bar. but there is no update for almost 2 hours. please let me know how to proceed further

    Hi.. IOS 6..1.1 is downloaded in my ipad 3.. then i clicked to install. ipad restarted with an apple icon and a status bar. but there is no update for almost 2 hours. please let me know how to proceed further

    Hold down on the home and power buttons at the same time until the iPad shuts down and the Apple logo appears again.
    You might need to connect to a PC running iTunes to restore if the update got corrupted and can't complete

  • Can't seem to update firmware on Zen Xtra (3

    I am having trouble upgrading firmware on player.
    I am trying to go from .0.0 to .20.08.
    Followed instructions and removed current OS from player.
    Launched the upgrade firmware file and followed instructions.
    Where I seem to be having trouble...is after the upgrade seems to be proceeding nicely and get to the end of the progress status bar...the PC GUI says "the player is now rebooting"...but
    the player does not rebot.
    I think this is necessary...because if I manually boot from the rescue menu...i simply go back to the original OS.
    I am having other trouble as well.
    I am trying to upgrade the firmware because i can't seem to get any music to transfer to the player anymore.
    I have not tried to move content into the player for along time...and since that time I have a new PC.
    I can't seem to put my hands on the original CD that came with the player...so I went to the Creative Website and downloaded the most recent Media Source Organizer. It gives me a file transfer error when I try to move new content onto the player...so I thought I would update the firmware on the player.
    Any help would be appreciated....thank you very much.

    Try the easiest and alternate way by downloading from here
    * getfirefox.com

  • IMessage is not working on my iPad since updating to ios7.0.6

    iMessage is not working on my iPad since updating to ios7.0.6
    It worked well before doing the latest update.
    iMessage on My iPhone 4 works fine after doing the same update.
    Have done all the usual things plugging into computer, complete shut down and reboot, nothing has worked.
    It keeps asking for password for Apple ID, I know I am entering the correct ID,  check network is also being displayed.
    Nothing wrong with my network either, other iPads and iPhones are working fine on the same network.
    Would like this fixed ASAP.
    Thanks

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Can not update firmware on Officejet Pro 8610

    Can't update firmware on Officejet Pro 8610, Hp update site shows available firmware update needed, disabled firewall, shut off wireless, run program, window for update appears, but checkbox greyed out. I've talked to HP Tech, He was positive newer firmware was available, I've tried starting in safe mode w/networking, disabled, MS Security essentials turned off,etc. Have Dell Dimension, excellent running, Windows 7 Home Premium, Xfinity cable network modem (very fast), I'm getting frustrated.
    Does anybody have a suggestion? Thanks, Jim

    Hi @jwhite8150 , and welcome to the HP Forums!
    I see you're having issues updating your firmware.  I would like to help!
    Before we start I have a request. 
    Press Setup on the front panel of the printer, and select Reports.  In the reports menu select Print Status report.  On that report, please let me know what firmware version is listed.
    Thanks!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • I have Lion on my 13" pro and have kept it up to date. Today I had a message about the need to update firmware. I pressed restart and there was language about the screen ging gray. I think it said for a few minutes.  It has been 3 hrs. is this a problem?.

    I got an alert to update firmware. When I click for restart a message the screen would gray and and it might ake a few minutes.  That was about three hours ago and it is still gray and sitting there. Is this to be expected? What could/should I do?  I am typing this on an ipad because the Macboob Pro is currently useless.

    With Firmware updates, Apple will usually offer instructions to complete the update, since they require an additional step to complete. It sounds like you haven't finished the Firmware update completely.
    Since it's your computer and investment, I wouldn't risk it and would visit your local Apple Store and let them solve the problem. In the meantime, read this link from Apple:
    http://support.apple.com/kb/HT1557?viewlocale=en_US&locale=en_US
    ...to bring you up to date on the procedure.

Maybe you are looking for