IOS7 update help needed

I attempted to update from iOS 6 to iOS 7 had no problems downloading the update until it froze on the screen with only an apple and the loading bar.  To remedy this I factory restored my iPhone 5 and downloaded iOS 7 from iTunes.  Now I can make it through the setup stages until the activation screen where it reads "Your iPhone could could not be activated because the activation server cannot be reached.  Try connecting your iPhone to iTunes to activate it, or try again in a couple of minutes."  So I tried to connect my phone to iTunes (the current version) and it reads "We could not complete your iTunes store request the network connection was lost.  There was an error in the iTunes store.  Please try agian later."  This has been happening for a couple hours,  also I am in full range of my home wifi and have no problems with my internet connection.  Any suggestions/help would be appreciated.

I am having the exact same issue, except I had only just performed a restore ! F***ing rediculous from apple this

Similar Messages

  • I am trying to update my MAC to get iCloud on it, prior to the ios7 update.  Need help figuring this out!

    I am trying to update my MAC to get iCloud on it, prior to the ios7 update.  I do have a pc as well, so i can sync it there if needed.  any help or suggestions are much appreciated!

    beachblondie wrote:
    ...  I am just afraid of losing everything ...
    How to BackUp  >  http://support.apple.com/kb/ht1766
    What gets Backed Up
    iTunes http://support.apple.com/kb/ht4946
    iCloud http://support.apple.com/kb/PH2584

  • IPad went into recovery mode by itself during/after ios7 update. help please.

    My ipad went into recovery mode during or after the ios7 update. i forgot to back up my files and now i need the notes from it. i am unsure if they are syncd to my gmail but i am not syncd to icloud. is there anyway to get my files back?
    i have tried using all sorts of programs like redsn0w and tinyumbrella to try and kick it out of recovery mode. But every time i try and get out it just loops back to the itunes and cable logo. is there anyway i can get out without restoring and or losing the files inside the ipad. or is there a way to access the files while in recovery mode. thanks in advance or the help.

    I have experienced a similar error with the iPhone 4S.  The new version of iTunes will not let me restore the phone, it must be updated and nothing appears to be happening.  Suffice it to say I am not amused.  Apple needs to work this out - I had trouble updating to 8.0.2 as well.

  • HT4623 Updating the iPhone4 to iOS7 URGENT HELP NEEDED

    Hi, when i try and update my iPhone4 to iOS7 it doesn't work, it comes up with a warning message saying something like you are not permitted to do this at this time please check your connection and try again later, why is it doing this!?

    *** I HAVE THE ANSWER ***
    You must goto Settings > General  > Reset > Reset All Settings ... this worked 100% for me and once that is compelte go back and try to pass the terms and conditions, you will see the "agree" button in the bottom right hand corner

  • Stuck with - Update- help needed

    Hello all and thank you for reading!
    I have the following problem with update statment. Tables and data in them are as follows:
    Table 1: XML_TRANSFER
    create table XML_TRANSFER as
    select 111111 TAX_NR, 1 TYPE, 3000 PRIJ, 3000 POBOT from dual union all
    select 222222 TAX_NR, 1 TYPE, 720.7 PRIJ, 350.70 POBOT from dual union all
    select 333333 TAX_NR, 1 TYPE, 2600 PRIJ, 2100 POBOT from dual;Table 2: FIR_SET
    create table FIR_SET as
    select 2011 LET, 7 KROG, 111111 TAX_NR, 10 STEV_FAK, 2000 VALUE_ODPR, 0 VALUE_POBOT from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 11 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 12 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 13 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 1 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 2 STEV_FAK, 20.7 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 3 STEV_FAK, 100 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 4 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 333333 TAX_NR, 81 STEV_FAK, 2600 VALUE_ODPR, 0 VALUE_POBOT  from dual;Ok, tables and data are set now for the "update" logic.
    Lets look at the data in table XML_TRANSFER.
    First row (with TAX_NR = 111111):
    UPDATE statment in this case should work like: the VALUE_ODPR should be same as VALUE_POBOT in table FIR_SET.
    This part i managed to do with this SQL:
    PROCEDURE     xml_update is
    BEGIN
    update fir_set an
    set an.value_pobot = an.value_odpr
    where let = (select distinct max(let) from fir_set)
    and krog = (select max(krog) from fir_set)
    and
      (select sum(a.VALUE_ODPR)-b.POBOT
      from fir_SET a, xml_transfer b
      WHERE a.tax_nr = b.tax_nr
      and an.tax_nr = a.tax_nr
      group by a.tax_nr,b.POBOT) = 0;
      commit;
      end;Resoult is as:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      111111                 10                     2000                   2000 
    2011                    7                      111111                 11                     400                    400
    2011                    7                      111111                 12                     100                    100 
    2011                    7                      111111                 13                     200                    200                Ok the next example is a bit more tricky and i cant figure it out. I dont know how to explain it properly ... i will
    just post the resoult and try to explain it:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      222222                 1                      200                    200 
    2011                    7                      222222                 2                      20.7                   20.7
    2011                    7                      222222                 3                      100                    100 
    2011                    7                      222222                 4                      400                    30   So what we need to do is we check is XML_TRANSFER.POBOT - VALUE_ODPR > 0, IF this is it then we update VALUE_POBOT with VALUE_ODPR.
    In next row we check again if above statment is correct and if it is we do the same. The process will continue as long as statment
    will be correct.
    If statment is no longer correct we have to do this operation: XML_TRANSFER.POBOT - SUM(VALUE_ODPR) (INSIDE SAME TAX_NR!!! So group by tax_nr!!)
    and update last row with given resoult. By no means we can get negative numbers.
    I really do help i explained my problem so that you will understand what i want to achive. If you have any questions please feel free to ask.
    Thank you for your help!
    Best regards, Cain!

    Hello and thank you again for taking your time!
    SQL you posted is still not quite right but we are almost there ... let me show you how it should look like (i have add a little more data into tables):
    Table XML_TRANSFER:
        TAX_NR       TYPE       PRIJ      POBOT
        111111          1       3000       3000
        222222          1      720,7        200
        333333          1       2600       2100
        444444          1       1000       1000
        555555          1       5000       3000Those are resoults i get running your SQL .....
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600           0
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000           0
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500the correct resoults should be:
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600         2100
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000       500  
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500Note at line 2011          7     333333         81       2600         2100 and at line 2011          7     555555        111       2000       500    I hope its more clear now.
    PS at 2600 the correct resoult is 2100 and not 0.
    Thank you
    best regards!
    Edited by: Cain_oracle on 24.8.2011 1:08

  • HT1766 iOS7 update help - recovery mode

    Hello,
    I updated my iphone 4 today to iOS7.  I'm now in recovery mode.  When connected to itunes, it says I have to restart my phone.  I'm afraid to do this because it says I will lose my data....lose all my photos!!  Or am I too late, have I already lost my photos?  I'm a new iphone user and pretty upset that before installing the update it did not warn me to back up files, that they would be deleted.  Is there anyway I can back up my photos before I get out of recovery mode?  I had some very precious photos on my phone that mean a lot to me.  Thank you for you help.

    Once the iPhone is in Recovery mode, personal data is lost, unless backed up in iTunes or iCloud.
    Did not mention which iPhone and iOS on it !

  • P6-2141eo Bios update, help needed.

    So i bought a new graphics card, tried installing it and it wont work, and when asking around i have been told that what i need to do is update my BIOS. However, there are no updates available under the product page for my desktop, the p6-2141eo. What im wondering is if HP simply wont be suplying any more updates to my model anymore, and if so does anyone know where i would turn to find newer versions of the BIOS, if there is any?
    The current BIOS is ami 7.16
    Would appreciate any help i can get!

    First things first.  Most likely a newer version of the BIOS will not address the problem you think you have. So, it seems there is another reason for the problem.  In checking the specs for that model, it shows there to be a 300w power supply.  That will limit the choices for a video card upgrade.  What is/was the new card that you tried?
    Next, I see that you have an Intel i7 processor.  In many posts from users trying to the change the video cards on these type systems, it is a real problem.  For whatever reason, ( I have not seen a resolution as to why ) trying to change the video cards and getting a performance improvement is troublesome, to say the least.  The delicate balance between the video card and the processor on these is easily thrown off, I do not know the reason or the solution.  Most users give up and leave it as is.
    I know, not a help.  I too, will track this discussion  to see if there is a resolution so I can help someone else down the road.  Good luck!!!
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Ayttm PKGBUILD update/Help needed

    The PKGBUILD in the aur is  badly outdated..V0.6.2 of ayttm is out . .and the PKGBUILD in the aur was to build v0.5 ...
    I have made a PKGBUILD of ayttm git over here
    http://aur.pastebin.com/9sMXVMz4
    Apart from that ,  building of ayttm fails..
    Both with the stable release of Ayttm 6 and the git
    Got this error here..
    http://pastebin.com/vx514JTp
    was wondering if anyone cud help me out..
    Any help would be much appreciated
    Last edited by fplolz (2010-04-22 11:11:28)

    With Windows, you need to disable firewall/AV/antiphishing/malware software. Once you do this, you should be able to complete the update.

  • HT1338 OS update help needed

    I have a 4 year old macbook with OS X v 10.5.8. In order to use a new iPod classic, I have to update my iTunes. In order to update my iTunes, I have to update my OS to 10.6.8. I downloaded it but got a message saying that I can't install it unless I hhave OS X v 10.6.
    I can't find a 10.6 update download.
    Can anyone help? This is really frustrating.

    Try installing iTunes 10.6.3. If that doesn't work, there isn't a download and you need to buy the upgrade on DVD.
    (79853)

  • Update Help Needed

    When I try to update my 3GS, I get a window that pops up and says that my "network connection has timed out". I have been on the phone with Apple twice now and they have no idea what to tell me!!! So frustrated! Please help!

    With Windows, you need to disable firewall/AV/antiphishing/malware software. Once you do this, you should be able to complete the update.

  • J2SE 1.50 06 Update Help Needed

    I am struggling with Java installation on an XP SP2 machine. First off, I am not a developer or programmer nor do I write code beyond basic windows/dos/tagz functionality.
    I registered here only after exhaustive and unfruitful web search and following 'normal' troubleshooting guidelines a Google search would produce.
    So at the risk of having violated forum policy by posting here, I apologize. Here is the problem:
    First noticed excessive error logging by Java applet while in Firefox 1.5. Cryptic messages didn't reveal much (to me), but I went through cleaning and reinstallation of latest Java software.
    Problem has escalated to a point where any console related inquiry, whether through IE , Mozilla or Windows control pannel will either black-out monitor or freeze screen with very noticable degradation of video signal. This makes troubleshooting difficult! Running Dualview; 2nd panel shuts down immedeatly. While freeze may sometimes unlock after a few long minutes, secondary panel will not restart w/o rebooting.
    Attempted 'clean' boot, lowered resolution ,changed hard ware accelaration and disabled write combining in multiple combinations without improoving results. Also signed in with different user profile.
    XP patches are current (according to MS Update anyway) , install is fairly recent. BIOS to ASUS P5WD2 Premium is up-to-date (P830D processor, 2 GB RAM) All other hardware in my machine runs flawless. No RAID, overclocking or hazzardous Reg tweaks.
    I am suspecting inter-relation between Java program and graphics system is causing trouble. Nvidea 6600 GT runs Viewsonic 20 at 1600x1200 and a Dell 18 at 1200x1084. I tried single modes and switched from DVI to VGA on both. Still no beans.
    XP runs rather lean (by windows standards) Heaviest load after explorer and browser is generally software based KVM (Kazoom) . I disabled program during troubleshooting.
    Error is repeatable in both Firefox and IE. Following links to 'test' Java installation generally results in same issue; either a black screen or freeze with degraded video signal.
    I may have 'class path' issue. For one, it's not listed in sys prop variables! I do show PATH and PATHext. Local directories are not default (C:Temp; C:Data etc) but 'program' and 'application' directories are unchanged. No other managed installs complain (Adobe CS, Office 2003 Pro). Windoze Error log doesn't report Java problems of course.
    In Java directory, I find PATCH.ERR file:
    ENTRY: lib\charsets.jar
    warning wpt0015: Old File does not exist
    ENTRY: bin\eula.dll
    warning wpt0015: Old File does not exist
    ENTRY: lib\ext\localedata.jar
    warning wpt0015: Old File does not exist
    Any tips or protocols you can suggest would be helpful
    I appreaciate the time you spent reading my post.
    Cheers
    Frank

    Check the video driver settings for an anti-aliasing parameter; reset to application controlled if different.

  • Ipod touch 3.1 update help needed urgently

    please hepl!!!!
    ive just downloaded the 3.1 update for my ipod touch , but halfway through the transfer from my computer to my i touch , i lost power to my computer , now my i touch is stuck on a screen with the apple logo and a progress bar that is empty , ive unplugged and plugged my i touch in again and it isnt even recognised
    what do i do now
    please help
    thanks
    russ

    i have the same exact problem and i have tried all the trouble shooting steps and it still doing the same thing. any suggestions??

  • 600x bios update help needed

    i have a 600x, well its my daughters, but having a problem with the sound from speakers, i would like to try updating the bios, but all the updates i can find are for floppies, this machine doesnt have a floppy drive, so is there any other way to update the bios.

    First things first.  Most likely a newer version of the BIOS will not address the problem you think you have. So, it seems there is another reason for the problem.  In checking the specs for that model, it shows there to be a 300w power supply.  That will limit the choices for a video card upgrade.  What is/was the new card that you tried?
    Next, I see that you have an Intel i7 processor.  In many posts from users trying to the change the video cards on these type systems, it is a real problem.  For whatever reason, ( I have not seen a resolution as to why ) trying to change the video cards and getting a performance improvement is troublesome, to say the least.  The delicate balance between the video card and the processor on these is easily thrown off, I do not know the reason or the solution.  Most users give up and leave it as is.
    I know, not a help.  I too, will track this discussion  to see if there is a resolution so I can help someone else down the road.  Good luck!!!
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • N97 Firmware update, help needed!

    hi,
    i have following problem... i am a mac user, so i cant update my firmware. 
    got a pc from a friend, windows xp service pack 3, to update my firmware...  installed the new ovi suite from beta labs, works good, phone recongnised etc....
    if i try updating from ovi suite, i get following error when the programs wants to download the software: internal error 625. 
    when i try to update through nokia software update app, it can connect to the phone, but then can't identify my nokia n97... 
    so both ways aren't working. does anyone have a clue why?
    thanks
    alex

    I also have the new MBP with the C2D, and i checked everywhere to see if i needed the firmware upgrade, and couldn't find it anywhere. All the references that i found were toward the old MBP, not the new one. One question about your boot camp tho, does your cpu constantly run at about 75% load in windows, because i just installed boot camp with XP pro today, (NO problem with firmware that i found) and i was always under load. Might be something to look into.
    PS, mine is 1.12f5, just like yours

  • SMC Firmware update help needed

    I've just got this brand new MBP from Apple. As a MacUser for the last 15 years my work now requires that I get Windose XP- hence the upgrade (I think I would have stayed with my old G4 Ti if I hadn't needed to get XP- but now I'm pleased that I did get this computer after all).
    Anyhow, enough of that. I have to install boot camp and the instructions indicate that I need to check my firmware and to see if it needs updating. This mbp system profiler reads that the Boot ROM Version is;
    MBP22.00A5.B00
    and the SMC Version is;
    1.12f5.
    However to me this is really quite illogical, because this could mean anything as far as I'm concerened- as I can't find any reference to these numbers anywhere else on the Apple site. Can you Apple folks shed some more light on this- and if I need to update, would you be so kind as to point me in the right direction?
    PS, Send my thanks to everyone at Apple for such a smashing Power...ahem...Macbook Pro
    regards,
    Tom
    Macbook Pro   Mac OS X (10.4.8)   2.16 GHz Core Duo 2

    I also have the new MBP with the C2D, and i checked everywhere to see if i needed the firmware upgrade, and couldn't find it anywhere. All the references that i found were toward the old MBP, not the new one. One question about your boot camp tho, does your cpu constantly run at about 75% load in windows, because i just installed boot camp with XP pro today, (NO problem with firmware that i found) and i was always under load. Might be something to look into.
    PS, mine is 1.12f5, just like yours

Maybe you are looking for

  • Issue with PO release (multi level approval)

    Hi, Need help regarding PO release. I am working with 4 level  approval process. Information: it is sequential release as I can see in workflow log, a new workflow gets generated for next level only after previous level executes the workitem. Facing

  • What's a Good checklist for changing ISPs?

    On April 1st, my ISP is changing all the email suffixes from 'verizon.net' to 'hawaiiantel.net.' In anticipation of that, I'm trying to put together a list of things to make the transition smoother. If anyone has some additional suggestions, I would

  • Why am I not able to donate via text message?

    After I sent a code to donate, I get a message asking what my billing zip code is. I reply with that and get a response saying, "Your wireless account is not eligible to donate. Your donation cannot be processed. You can still donate at redcross.org.

  • Right-Click on an entry no longer works

    All of a sudden when I right-click on an entry the drop down box to copy, paste, etc has vanished. Help! I used the calendar all the time and and this helps in the process. Thanks for all the help.

  • Purchased lightroom and photoshop for the year. But tells me it will expire.

    Hello I had purchased photoshop and lightroom for the year membership. some reason it tells me a count down for my trial to expire.