Restore problem - only half of my apps/settings were restored

Yesterday i've update my iPhone os to 5. My problem is that itunes restored only half of my apps and settings. How i can fix this?
Thanks,
MM

Try the following to rule out a software problem:                 
- 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.
- Power off and then back on your router
.- Reset network settings: Settings>General>Reset>Reset Network Settings
- iOS: Troubleshooting Wi-Fi networks and connections
- Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
- iOS: Recommended settings for Wi-Fi routers and access points
- 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

Similar Messages

  • HT201272 why have only half of my apps come up on my new ipad

    why have only half of my apps come up on my new ipad?

    Do you mean that they don't show in the Purchased tab in the App Store app on your iPad ? If the app is no longer in your country's store then it won't show, you can only redownload those that are still available. Also if you've changed countries since you bought them then they also won't show in the Purchased tab. Or do you have an app age rating set in Settings > General > Restrictions that might be hiding them ?

  • Trying to change ownership of my old iPod. The advice here is to go to "Devices" "Summary" "Restore", but I find "Devices" does not offer "Restore" but only "Sync", "Transfer", "Backup", and a greyed "Restore from backup."

    Trying to change ownership of my old iPod. The advice here is to go to "Devices">"Summary">"Restore", but I find "Devices" does not offer "Restore" but only "Sync", "Transfer", "Backup", and a greyed "Restore from backup."

    What I don't understand is that your iTunes looks different from mine--just a little bit. You have 3 circles, red, yellow, and green, in the upper right end of the top bar. INstead I have a square that is half gray. When I click it, I get a menu very similar to the menu under "File."
    The only place I see an entry for "Devices" is under "File," but it only gives the 4 options I mentioned before (see below). There is no "Summary."
    Here's another screen shot after I added an album to music. Now all the choices under "Devices" are grayed.

  • Problem with checkbox value and app.settings.getSetting()

    Hello everyone.
    I`ve got a problem with getting saved settings for checkbox.
    Saved settings doesn`t apply on checkbox value.
    It`s strange, but it always "true".
    So here piece of code:
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
    win.checkPanel.chkOne.value is always true.
    Can someone exmplain why and how to get rid of this static value?
    P.S. just in case, here is full code:
    function mainFun()
        this.windowRef = null;
    mainFun.prototype.run = function()
        /*----- UI -----*/
              var retval = true;
              var win = new Window("palette", "Check option", [150, 150, 460, 455]);
              this.windowRef = win;
              win.checkPanel = win.add("panel", [25, 150, 285, 265], "Checkbox");
              win.checkPanel.chkOne = win.checkPanel.add("checkbox", [10, 15, 125, 35], "Checkbox One");
              //win.checkPanel.chkTxtOne = win.checkPanel.add('edittext', [140, 15, 230, 35], '');
         win.quitBtn = win.add("button", [110,275,200,295], "Close");
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
              win.quitBtn.onClick = function() {
                  win.close();
        win.center();
              win.show();
              return retval;
    if(typeof(mainFun_unitTest) == "undefined") {
        new mainFun().run();

    Played around with different values, combinations...
    Doesn`t work too:
    checkMe = 111;    //any value for the first time running
    if (app.settings.haveSetting("333", "check")) {                           
                          checkMe = app.settings.getSetting("333", "check");
    alert(checkMe);
                    if(checkMe == 111){
                             win.checkPanel.chkOne.value= false;
                            }else{
                                if (checkMe != false){
                                win.checkPanel.chkOne.value= true;
                                }else{
                                win.checkPanel.chkOne.value= false;
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;
        var path12 = path11.toString();
        app.settings.saveSetting("333", "check", path12);
        alert("Saved value - " + app.settings.getSetting("333", "check"))

  • Restored new iPad from iPhone, but apps' settings didn't transfer

    I just got a new iPad. I chose to restore it from my iPhone backup when iTunes asked. All of the apps made their way over, but I was surprised to see that the settings, such as login info (username/password, email account settings, etc.) didn't make it for any of the apps. Is that normal? Do I really have to set up all the apps by hand (including email accounts) - there's no way to have all the settings and preferences get copied over as well?
    Mike

    I am also assuming you bought a brand new out of the box iPad and it is
    running iOS 4.2. which I should have asked from the get go but moving on ....
    yep - brand new iPad, running the latest iOS.
    From the reading I've done, I find it odd that the devices tab shows 3
    different iPad backups in iTunes. The article states...
    +iTunes keeps only one backup created during the sync process for each device.
    yes! I saw this too - it's very weird. I could make a screengrab of what I see - there are definitely more than one iPad backup (but only one iPhone backup) listed.
    The fact that you recent backup occurred so quickly indicates that the
    information wasn't restored to the iPad. Did iTunes ask for the password? If
    not then it wouldn't have transferred the info from your phone when you "
    restored and that's why it's telling you the operation could not be completed
    would be my assumption.
    it did ask for the password (which it also had in the keychain, so it was automatically filled in). It did a second phase after the first quick "restoring" where it took a while to copy the apps - so I know it did copy all the apps (I see them on the iPad), just not the settings...
    Here are some articles that may be relevant in one way or another. Forgive me
    if I am repeating information.
    thanks; I did read all this, but everything states that the settings should come along when I restore
    I'm sort of at a loss now unless you delete the encrypted backup, unencrypt the
    phone and backup again, restore the iPad as a new device and then backup and
    live with having to enter all of the passwords.
    yeah, I can do that. I will also try creating a new account on my Mac (with an empty iTunes), connect and back up the phone to an encrypted backup, and try restoring that to an iPad (maybe my existing backup on the iTunes account is somehow incomplete since it used to be unencrypted).
    I really thought this would be a relative no brainer but it might make sense to
    speak to someone with more brains than me (that shouldn't be too tough) like
    Apple Support. http://www.apple.com/support/contact/
    yeah, everything I read on-line makes it seem like this should be easy. I'll call them tonight when I'm home in front of the Mac and the iPad...
    thanks!
    Mike

  • Replacement iPhone restore problems - only a very old backup

    My partner lost her iPhone 4 and just purchased an iPhone 4S - she didn't want the new 5s (size). When she went to do a backup from her computer the most recent restore option is more than 18 months ago. She doesn't do frequent sync to iTunes but she has definitely sync her iPhone 4 this year on more than a few occasions. I had this problem (not this extreme) when swapping iPhones , recent sync is not in the list .
    Can anyone shed some light on this?

    Have her update her phone and try again.  If the replacement phone is running a lower version of iOS than the one she backed up, the backup will not be shown when she attempts to restor it.  (She can check the iOS version by going to Settings>Ganeral>About>Version.)  Updating will update it to iOS 7.0.2.

  • Only half of the app dowloads, then says it is uable to download it at this time

    I am trying to install apps on some new ipads using our wi-fi at school.  Half of the appl installs, then it stops and I get a message that says "unable to down application at this time"

    I am having the same problem too for about a week now. Is it apple server problem?

  • I just recently restored from icloud but my passkeeper app did not restore.  I lost all my passwords.  is there a way to rerestore to get that info?

    Please, I am wondering if there is chance that i will be able to retreive my info.  I restored from icloud.  the app that did not restore is "passkeeper".  It's a password storage app that works really well.  Tha problem is that it did not restore. 

    Do you recall what you did? if you remove an extension through the Add-ons page or use Firefox's Reset feature, normally your passwords are preserved. Not sure what else would have been recommended.

  • Time Machine restore didn't work, all of my files were restored to a hidden part of my HDD. What should I do?

    I recently had my HDD wiped out at the Apple Store. Before doing this I did a complete time machine backup to an external Lacie drive. I had Snow Leopard reinstalled on my laptop and on booting the OS for the first time, my external drive wasn't recognized. I opened the migration assistant and the drive wasn't found either (but it showed up in the Finder and all of my files were accessible). It eventually opened in the Time Machine utility but when I restored to the last backup date, it saved to a folder called "Volumes," and nothing changed on my laptop. None of my files can be found on my HDD, none of my old settings are intact, but my drive is completely filled. I don't know where the files were saved to or what went wrong in the restore. Can anybody help me?

    Yeah, thanks a lot from me too! I had exactly the same problem, but now things seem to be fine. Apple should pay you, since you do their job!

  • TS1424 i buy songs and its only half of the complete song?

    i buy songs and its only half of the complete song were downloaded?

    Other people have been having similar problems with songs over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting them from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • HT1766 How to restore notes only on iphone5 ?

    How to restore notes only on iphone5 ?

    You cannot selectively restore with itunes or icloud ....it is all or nothing.  However with a program like ibackupbot on your computer you may be able to do what you are asking about

  • I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. Help

    I am having a big problem. I am not getting notifications from snapchat and only snapchat. I've made sure every notification setting was on and it just won't work. I have also restored my phone and deleted the app and re-downloaded it multiple times. It just wont give me my notifications. Help please.

    Go to Settings > Privacy > Location Services.
    Turn off SnapChat.
    Go to Settings > Notification Center
    Turn off SnapChat.
    Restart the device.
    Go to Settings > Privacy > Location Services.
    Turn on SnapChat.
    Go to Settings > Notification Center
    Turn on SnapChat.
    Test the issue.

  • New iphone6 icloud restore only half photos

    So i got the new iPhone 6 a few weeks ago. When i got it i did the icloud restore everything came back contacts, apps,notes but only half my photos came back. The most recent ones show up fine but the other ones show up in the right album and shows the time, date and place of the photos but when i click on it, it just says downloading I tried to let it download a few days nothing happened. Ive tried re restoring it a few times I get the same thing. Also I didnt hae it backed up on my itunes only iCloud any help would be great i lost alot of important pics. thank for any help

    Sorry to barge in but been troubleshooting my problem for 3 days and I think I need anger management classes now.
    My goal is to install Logic Pro. My internal HD is full. Bought a new Internal Hitachi Deskstar 500GB. Installed it. After restart it is recognized. I formatted it and ultimately want it to be my master boot HD. Now Logic needs an OS to operate so I am trying to install OS X from my original "Power Mac G4 Software Install and Restore" disc. CD/DVD combo drive reads the disc, I execute the installer, then it asks me to restart. Problem is, on restart at the installer screen my Keyboard and mouse dont work so I cant do the install. Tried bypassing my USB hub by plugging directly into Mac, tried pressing the "C" key on startup, tried the "Option" key on restart, tried disconnecting my original HD, and nuttin. Uggggg!
    Oh, by BTW, I have a G4 PPC (mirrored door type) currently running OS X Tiger 10.4.11.
    Desperate,
    Trake

  • How can I sync only certain apps after a restore instead of all of them?

    I've been serisouly frustrated with iTunes trying to find a way to sync only the apps I want to sync. But iTunes insists that I sync every single app I have downloaded in the past to my phone and I don't want all of them on there. Now after restoring I have a bunch of apps on my phone waiting to sync and now have to either restore again or individually delete all 155 of them. Are there certain settings I'm missing here?  Please help!!

    Thanks for the help I did not receive
    Hey, glad I didn't help.
    I mean, you waited a whole 38 minutes for someone to volunteer their assistance.
    FYI:
    Select the iPhone in iTunes.
    Click the Apps tab.
    Click Sync apps and tick the apps you want to sync.
    Click Apply at bottom.
    You're welcome.
    After literally digging for forever.
    Something less than 38 minutes is forever? (time it took to post first question, find answer, get upset and post 2nd time).
    Oh, and thanks for posting how you resolved the issue so others (who may not get an immediate reply) will know how to solve a similar issue without getting upset.

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

Maybe you are looking for

  • Old imac hard drive crashed... how to put ipod tunes into new imac's itunes

    I'm sure this is something that's been revisited a number of times already... My "old" imac (2 years old -- yes I'm ****** but let's not go there) hard drive ceased living. I literally lost everything (had all data backed up, whew!). Anyway, how can

  • [Apache] Problem with Mod_rewrite

    Hi, when I try to use mod_rewrite on my localhost, it won't run. Simple rules like ^index.html$ index.php [L] return me a 404-Error. I read somewhere in the forums about "AllowOverride" and set it to all, but i didn't improve anything. Does someone k

  • Why the system invokes card.toString() by itself

    Hi All! When Card3 is instantiated and then printed out.The result is, as if the card.toString() was invoked ( Ten of Clubs). Could somebody tell,why the system invokes card.toString() by itself. Thanks. public class card3Demo { public static void ma

  • RTP300-NA v1.1 slow to some web sites with Vista (XP ok)

    I have a RTP300-NA VoIP router (v1.1) which works perfectly with Windows XP, but not with Windows Vista. With Vista some web sites work OK, while others have a ~2 min delay. These web sites appear completely and quickly after the initial 2 min. It se

  • Crystal Reports XI Release 2

    Hi, Even though I have been developing applications for over 5 years, I am new to this forum and Crystal Reports.  I am developing a new application in VS 2005 for which I have installed Release 2.  According to all the forums I have visited, this sh