Apps falling out if folders when updating

I syncd my iPhone 4 and updated some apps that were previously in folders. Now after the update, they are no longer in the folders. I am using the latest software/firmware. The folders with other apps in them are still present. I did not lose the folder.Would appreciate any help on this.

Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears)

Similar Messages

  • IPad app store "unknown error" message when updating app

    iPad app store "unknown error" message appears when updating app

    Kathryn,
    Had the problem also.  Found in the forums and it worked for me:
    go to settings
    go to app store or "store" on my ipad
    click on the apple id
    sign out
    sign in, again with id and password
    then do update.
    Hope this helps.

  • Apps getting out of folders

    I assembled most of the apps into few folders and syncing with Mac caused no problem, but when I sync with PC all folders disappear and apps get out. Any idea why?

    Standard troubleshooting...
    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    Remove all apps from Recently Used list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Tap and hold any icon in this list until they wiggle
    - Press the red (-) to delete all apps from this list.
    - Press the home button twice when done.
    If still a problem restore with your backup.
    If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    If still a problem, it's likely a hardware issue.

  • ITunes 11 for Mac "Update All Apps" grayed out, requiring relaunch to update again

    On iTunes 11.2.1 (1) "Update All Apps" grays out after I update once. I need to relaunch iTunes to get it to be clickable again. I am definitely logged in, etc., so it seems like a bug with iTunes, yes?

    The last several versions of iTunes have had this bug. The "Update All Apps" works once, and then it's greyed out after that until you quit and relaunch.
    As a workaround, you can click the first app, hold down the shift key, and click the last app to select them all. Then right click on one of the apps and select "Update X Apps."

  • Do you lose app content on your ipad2 when updating to ios5

    I know you can do a back up and restore but is all the content within your apps there? i.e. Pages, bento

    Absolutely everything was retained, in the right order and keeping all my contacts, game progress, folders intact. However, it's a counterintuitive process. At first, I thought I had lost everything. After the alleged update was over, I kept trying to launch my apps, and they just blinked, and wouldn't launch. I was in a panic. I hunted around for info online, and found you had you had to reboot your iPad, then Sync it manually on iTunes by clicking "Apply" in the Apps area. All my Apps suddenly appeared on the iTunes screen, in correct order, and started to load very very slowly onto the iPad. This took about an hour to finish. The entire upgrade process was around 8 hours .
    I had used around 60 GB of my 64 GB iPad2 (I also have a 32GB iPad1), so even before I Sync'ed it, I had seen on iTunes that the space was taken up. But they only appeared when I Sync'ed it, so don't panic. THEY ARE STILL THERE unless something catastrophic happened.
    Even then, you can restart the process again, and install your apps from a backup by doing a Restore (make sure you do have a backup before you start that, although the iOS5 process does so, by default). Always save a copy of your iTunes backup, in an external hard drive or at the very least, in a different folder on your comp.
    Good luck!
    P.S.: I wish I could copy-paste my reply to every thread, because EVERY iPad or iDevice owner, has this exact fear. Apple has done a very poor job of informing its users this go around.

  • Create Cloud app greyed out after latest Lightroom update

    With the recent update to Lightroom (5.6) I managed easily on my PC, but when I tried on my MacBook Pro it downloaded, then froze the laptop.  Subsequently the Creative Cloud App has been greyed out.  What do I do?

    you mean you cannot select your cc desktop app?  if so, uninstall and then reinstall, Download Adobe Creative Cloud apps | Free Adobe CC trial
    if you can select it but it doesn't open or it freezes, CC applications close immediately after launch
    if it opens but you see the spinning wheel, App doesn't open | Progress wheel spins continually

  • IPhone 5s. Apps moved out of folders

    The apps on my phone change size once in a while but come back when I reset phone. Now all my apps have moved out of my folders except for the apple apps, and are now taking up about 6 screens. Also the first time my apps icons changed size Safari disappeared off my phone. What is going on?

    No they will not. The iPhone warranty is not international and will only be serviced in the country of purchase. To get the device warranty serviced, you will need to return it to the US. You cannot ship it either, as Apple will not accept international shipments.

  • "powerpc apps are no longer supported" when updated to yosemite

    Updated macbook pro to yosemite and getting disclaimer that reads, "powerpc apps are no longer supported" for my microsoft office apps. Is there a way to get this problem fixed? I would hate to no longer have access to these apps and have to fork out  another $200 to get my apps back.

    See PeterVL57's first response.
    I'm guessing you upgraded from Snow Leopard (10.6.x) and are using Office 2004.  Snow Leopard was the last version of OS X to support Power PC applications.  Office 2004 is the last version of Office that requires Power PC support to run.  Unfortunately, there's no fix for this unless you update your software.  The 2008 and 2011 versions of Office will run on Yosemite.  For less costly alternatives to open and work with Office files, you can purchase iWork (Pages, Keynote, and Numbers are each available in the App Store for $20) or install LibreOffice (it's free -- http://www.libreoffice.org/).
    Alternatively, you could create a second partition on your Mac, install Snow Leopard and Office on this partition, and boot from this partition to use Office.

  • Any ideas creating app to read log file when updated?

    Afternoon all,
    I have been asked to write a java app which will read the contents of the server log file every time the log file is updated by the server. The app will be deployed onto WebSphere Application Server.
    Can anyone point me in the right direction as I have never written anything like this before and I don't know where to start. Any help will be much appreciated.
    Thanks in advance,
    A.

    alex@work wrote:
    I agree with most of what you've said but unfortunately I don't have a say in what the company wants. However, I am interested in the appender idea, perhaps they may go for that if I suggest it.I'd say it'll take you a day to read up about Log4J and how to write basic appenders, and another day to write your own appender for this problem. Compare that to the effort of writing something to poll a log file, re-read it constantly and update another file, operations which will get slower and slower as they go along. That's a fair amount more code than a single appender would be. There's how to sell it to your company.
    Can you give me a brief overview in how it works?Log4J uses objects called appenders, which take logging info - generated by your container - and do something with it. It ships with some appenders already in it, for writing to stdout, files, sockets and databases. You can also write your own appenders that do something more than these standard ones do. You write logging code in your application - in this case, your container already does this so you don't have to - and the configuration of Log4J decides what happens to these logging messages. That's what you're interested in. You could write an appender - a simple class - that takes raw logging messages in, and writes them out to file in whatever format you want
    Come to think of it, depending on how complex the required XML is, you may even be able to do this without writing any code at all. You can write formatting patterns in the Log4J config that existing file appenders will use to write your XML files
    A bit of an abstract explanation, I guess. Your best bet is to first ascertain that Log4J is indeed in use, and then read the documentation, which is surprisingly good for an Apache project :-)
    [http://logging.apache.org/log4j/1.2/index.html]

  • Out of space when updating os

    Trying to update to IOS and I keep getting out of space message. how do I recoup space to update

    Import your photos and videos to your computer and delete them from your camera roll (http://support.apple.com/kb/HT4083) and/or delete your music by unchecking Sync Music on the Music tab of your iTunes sync settings and syncing.  Then update your phone and sync your music and/or photos back to your phone after updating.

  • HT1338 i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created.

    i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created. As i dont have the access to the earlier id anymore.

    You cannot. The apps are assigned to that Apple ID and there is nothing you can do to change that. You could choose to download them again with the new Apple ID, any paid apps will need to be purchased again.
    Hope that helps.

  • My iPad 2 will not allow me to update my apps. When I hit the update button I get a spinning circle but then it times out and doesn't update. Please help.

    My iPad 2 will not allow me to update my apps. When I hit the update button I get a spinning circle but then it times out and doesn't update. In the past when I have updated successfully, the spinning circle would show me an indicator of time left on the update. I no longer have this Indicator. The circle just spins and times out and nothing happens. I've reset the iPad in the settings menu, reset the router, logged in and out of Apple id, powered ithe iPad off and on, and tried a couple other "fixes" that I've read online. So far no luck. AAny help would be greatly appreciated. Much thanks!

    How much free space do you have? If it is low, installers may not be able to run properly.

  • Anyone else getting a timed out error message when trying to check for updates via the app store software on a desktop?

    anyone else getting a timed out error message when trying to check for updates via the app store software on a desktop?

    Hi, couple of things to try...
    Anonymous
    Post subject: NSURLErrorDomain error -1100 in OS X 10.8
    If you check for software updates using the App Store in OS X 10.8 and get "NSURLErrorDomain error -1100" the problem may be with your Software Update preferences. This is particularly likely if you were using a custom Apple Software Update server. To solve the problem, quit the App Store, move the following two files (if present) to the trash, restart, and only then rerun App Store updates:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Library/Preferences/com.apple.SoftwareUpdate.plist.lockfile
    http://x704.net/bbs/viewtopic.php?f=12&t=6130
    I was recently trying to upgrade to mountain lion through the app store.  I have unreliable Internet from a cable company whom I will not name, but we all know who they are.  My Internet dropped while downloading the upgrade.  Once I went through the notorious unplug the modem/router and plugged it back in to gain Internet connectivity again, I could not resume. No matter what I did, the app store kept displaying "an error occurred." I am hoping that those with the same issue read this first to save them hours of skimming through the Internet to find a solution.  Here are the steps to take:
    1. Make sure you have reestablished Internet connection
    2. Chances are you got frustrated when you tried to resume/unpause the download and clicked the "X" to the left.  If so, select the "Store" drop-down menu from the App Store and select "View My Account." There should be an option to unhide your purchase.  You know what to do.
    3. There is also an option to  reset all warnings for buying and downloading under "View My Account." Do this, click "Done," sign out of the App Store and quit the App Store.
    4. Open the Preferences in safari and select Privacy.  Select "Remove All Website Data."  Just do it.
    5. Launch the app store and sign in.
    6. Now, if you "Check for Unfinished Downloads" everything works peachy.
    I hope this helps.  Not much I can do for your Internet connection though.
    JonEz15...
    https://discussions.apple.com/thread/4697970?tstart=120

  • ITunes apps freeze when updating

    Within the last week or so there is an issue with various apps on iTunes where I try to download the updates on my home computer, but just as it gets to "processing file" it freezes. Then I cannot even quit the iTunes program - I have to Force Quit to get out. Any suggestions?

    edweir wrote:
    I found a solution that worked for me in a similar thread. Thanks to daljit, gcoat, and Stametis Kapetanakis for their help.
    daljit
    Re: After updating, stuck on processing file
    Sep 18, 2013 2:23 AM (in response to jciyk)
    Go to folder "downloads" in iTunes music folder which is the temporary downloads folder for Tunes itself.
    If there is any item within (as a leftover from a former download), delete it.
    Delay gone.
    gcoat
    Re: After updating, stuck on processing file
    Oct 7, 2013 10:49 AM (in response to jciyk)
    1. Quit iTunes (if not possible, then force-quit)
    2. Delete every folder under here...
         ~/Music/iTunes/iTunes Music/Downloads (Note: The "~" character, tilde, refers to your Home folder.)
    3. Start iTunes and start your downloads again.
    Stamatis Kapetanakis
    Re: After updating, stuck on processing file
    Dec 22, 2013 9:02 AM (in response to gcoat)
    The correct file path for OSX Mavericks is:
    ~/Music/iTunes/Mobile Applications/Downloads/
    In my particular case it happens when updating Apps, and stick in "processing files" steps. Once stuck it needs to be Force QUit to clear it. As to the folder location, that depends on where you havelocated your iTunes data. Your preferences set to open up the iTunes folder. In my case that's, ~/Music/iTunes_xxxxxx/iTunes Media/Downloads
    The "xxxxxx"'s are a date code of the itunes data files installation.
    Regardless where it is located, this deleting of the items in the folder may solve it. Be aware that you may be asked to validate your Apple ID again and verify any age restriceted content. You can monitor the progress of the downloads by click in the little box on the top right of the itunes menu. However in my case it did NOT fix the problem. Updates downloads continue to hang. You can see where downloads create the .tmp files/folders but seem to stick on many items while completing others. No rhyme or reason to it that I can see.
    Also Pause All no longer works!

  • Apps rearranged themselves when updating

    When I updated my apps today, it rearranged all of my apps.  How did this happen.
    I didn't connect to iTunes, simply updated apps.  
    It took things out of folders, my pages are just a mess now. 
    Restarted and they are all in their new places. 
    Thanks. 

    That happens for me as well, I assume that it's a bug. You should be able to hide them via your computer's iTunes (and they should then stay unhidden) : click on your name towards the top right of your iTunes, and then click Purchased on the popup :
    Or you can click on the Purchased link under Quick Links on the right-hand side of the iTunes store homepage.
    Select the Apps section of Purchased and click on the top left corner of the app to hide it (an 'x' should show on the top left corner, but on my Mac's iTunes it's invisible, but clicking where the 'x' should be still hides the app).

Maybe you are looking for

  • What in God's name is it with Safari 4.0.3 Tiger and iTunes 9.0.1?

    This concatenation of "maybe-it'll-work-THIS-time" software crudpacks has been the most time-wasting, anti-productivity experience I've had in 20 years of owning Macs. I now have iTunes 9.0.1 working, but I have no idea how I got it to happen. None o

  • MacBook Pro and Projector - Keep MacBook resolution unchanged

    Hello, I am using a 13" MacBook Pro with a projector at work. When I plug in the projector, the screen resolution changes on my MacBook. I can change the resolution back to max using the pull-down, but is there a way to keep the MacBook at max resolu

  • Logical dbase vs view

    hi, i know that logical database is a special ABAP/4 program which combines the contents of certain database tables. i just 1 2 clarify if logical dbase cannot be used like transparent table or view in our customised report as logical database is a p

  • Document library is missing

    The document library panel is empty. I'm using windows 7, so I checked my app data adobe roaming folder and I can't find a document library folder on my hard drive. Does anyone know how to get the document library back? I tried updating fireworks, bu

  • Potos transfer from comp to ipad

    i am a new user of ipad , want to transfer photos from my comp tp ipad, how to do let me know?