Share button no longer working after updating to iOS 6.1.2

So this morning I updated both my iphone and ipad to 6.1.2 and now the share buttons in the app store no longer works, when I use the search function. To be specific if I do a search for anything and then try and open one of the apps in the search results and push the share button it never opens up the window to select a sharing option. The loading wheel at the top of just spins endlessly, but if I go to the "featured apps" page and click an app the share feature works. Worth noting that my iPad was also updated and works regardless

Hey I get this too does anyone else get it? Would just reinstalling fix it?
I have an iPhone 4 with 6.1.2.
xeni

Similar Messages

  • Gmail Push no longer works after update to iOS 4.2.1

    I have tested this several times. What previously worked as push yesterday no longer works as push from my Gmail account today after updating to 4.2.1. Is anyone else having this issue? In order to get mail to show up on my phone, I have to go into Mail on my phone. Then the little connecting thing starts up and all the mail since the last time I checked appears.

    This may be related -- I just updated my iPhone to 4.2.1 from 4.1. I immediately found that my Google Apps accounts, which had been configured as vanilla IMAP in Mail.app and successfully synced with iPhones as such for the past couple of years, have now started to sync with my iPhone as gmail accounts (not plain IMAP) and have therefore completely lost the custom From addresses, as it seems the iPhone does not allow custom From addresses in gmail accounts. (The accounts list in iPhone mail now has little red gmail icons instead of the generic blue account icons.) It also seems that push no longer occurs, whereas it certainly used to.
    Deleting all of the mail accounts from the iPhone, power-cycling the iPhone and then freshly syncing mail accounts from iTunes results in the same outcome. It is as though the iPhone is looking at the IMAP/SMTP settings and inferring that since they end with .gmail.com that the accounts are of type gmail, regardless of the fact that I have said that they are plain old IMAP. (It is tempting to create a noddy domain with CNAMEs pointing at {imap,smtp}.gmail.com just to fool the iPhone however it would probably then complain about invalid SSL certificates.)
    I deleted one of the accounts and recreated it manually on the iPhone. This lets me create a plain IMAP account even with {imap,smtp}.gmail.com server names, however when editing the address field, the keyboard which appears is bizarre -- no comma key! (Yes, I searched the various modifier keys, etc.) So, I copied a comma into the clipboard, pasted it into the middle of two From addresses and was at least mildly relieved to find that the mail program did then let me choose between the addresses. However, given half a dozen Google Apps accounts and a plethora of custom From addresses, there is no way that I am going to create this stuff manually. Maybe I will give that CNAME trick a go after all...
    My iPad on 4.2 is fine, however I have a hunch that I have not since resynced mail accounts to it since updating. I'll certainly not be daring to do that now.

  • [SOLVED] Suspend button no longer works after update

    Recently update my system, and now pressing the suspend button (Fn+F3 in my case) doesn't suspend it to ram as it did before.
    Running acpi_listen and hitting the button gives me the output "button/sleep SBTN 00000080 00000000 K" so clearly it's hearing it. Pressing the brightness buttons on the keyboard works (changes the brightness as expected), pressing the power button works to shut it down completely, closing the lid suspends it as expected... Just the suspend button stopped working.
    I saw a post about a different thing which mentioned systemd's config file "/etc/systemd/logind.conf" so I tried uncommenting the line in that file which tells systemd to handle the suspend button, but no luck, not even after rebooting to hopefully get it to source that file.
    Here is my ACPI folder's tree...
    ./events
    ./events/anything
    ./events/lm_battery
    ./events/lm_lid
    ./events/lm_ac_adapter
    ./handler.sh
    ./actions
    ./actions/lm_battery.sh
    ./actions/lm_lid.sh
    ./actions/lm_ac_adapter.sh
    It has everything it should have, i think. The handler script has a "case" for suspend button.
    Running "sudo pm-suspend" in a terminal suspends it, as does going into the XFCE shutdown menu and hitting suspend.
    I can't think of anything else to try. Also, I did look around for other posts, but wasn't able to find anything. If I missed something, I appologize for the double post.
    Thanks,
    --Scott
    EDIT: I swear I meant to put this in "laptop issues." This is embarrassing.
    Last edited by scott_fakename (2013-01-12 21:41:45)

    Sorry for not responding more punctually. handler.sh is as follows (the only modifications to it would have been things done by the system itself, as i haven't touched it)
    #!/bin/bash
    # Default acpi script that takes an entry for all actions
    case "$1" in
    button/power)
    case "$2" in
    PBTN|PWRF)
    logger 'PowerButton pressed'
    logger "ACPI action undefined: $2"
    esac
    button/sleep)
    case "$2" in
    SLPB|SBTN)
    logger 'SleepButton pressed'
    logger "ACPI action undefined: $2"
    esac
    ac_adapter)
    case "$2" in
    AC|ACAD|ADP0)
    case "$4" in
    00000000)
    logger 'AC unpluged'
    00000001)
    logger 'AC pluged'
    esac
    logger "ACPI action undefined: $2"
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000)
    logger 'Battery online'
    00000001)
    logger 'Battery offline'
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    logger "ACPI group/action undefined: $1 / $2"
    esac
    # vim:set ts=4 sw=4 ft=sh et:
    Also, here is logind.conf, which is back to its original state:
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU Lesser General Public License as published by
    # the Free Software Foundation; either version 2.1 of the License, or
    # (at your option) any later version.
    # See logind.conf(5) for details
    [Login]
    #NAutoVTs=6
    #ReserveVT=6
    #KillUserProcesses=no
    #KillOnlyUsers=
    #KillExcludeUsers=root
    #Controllers=
    #ResetControllers=cpu
    #InhibitDelayMaxSec=5
    #HandlePowerKey=poweroff
    #HandleSuspendKey=suspend
    #HandleHibernateKey=hibernate
    #HandleLidSwitch=suspend
    #PowerKeyIgnoreInhibited=no
    #SuspendKeyIgnoreInhibited=no
    #HibernateKeyIgnoreInhibited=no
    #LidSwitchIgnoreInhibited=yes
    The line that i uncommented (to no effect) was "HandleSuspendKey=suspend".
    I sort of have a workaround, inasmuch as I use XFCE and XFCE can handle the suspend key just fine, but the catch is that I have to have the DM up in order for it to do so, so it's not really a "solution" per se. Anyway. I don't know what else to try. The only other thing I could think of was to look in to laptop mode utils to see if others had had problems with it, but googling around yeilded nothing pertinent to this particular issue.

  • Enter Button no longer works after update

    I updated FF to the most recent version this morning. upon completing the update I typed an address into the URL bar and hit enter, nothing happened.
    I've noticed that I must manually click every single time on the green arrow in order to proceed after typing and address in the URL bar, is there a setting in the options/preferences that can re-enable this feature?

    I updated FF to the most recent version this morning. upon completing the update I typed an address into the URL bar and hit enter, nothing happened.
    I've noticed that I must manually click every single time on the green arrow in order to proceed after typing and address in the URL bar, is there a setting in the options/preferences that can re-enable this feature?

  • Screen sharing option no longer works after updating to iOS Maverik. I am using AIM and so is the other person who i am trying to share my screen with. .

    I am using AIM and so is the other person who i am trying to share my screen with. I log into AIM with an @aol.com account. I can request to share my screen and share the other person's screen. The window will pop up on the other computer, but after clicking accept it will go back to saying that there is a request for screen share. What should I do to fix this?

    HI,
    To be clear, iOS = iPhone and iPad and some iPod Touches and the Operating System they use.
    Mac OS X = the Operating System Mac computers use.
    Regarding the AOL account, is this actually from AOL and have the Chat/Messaging option enabled ?
    Or is it a Name registered with the AIM part of AIM ?
    You can have AOL as your ISP  and have an email and User ID from them.
    This needs to have the ability to use the name as a Chat name enabled (or at least it used to)
    AIM, which actually stands for AOL Instant Messaging has it's own registration site.
    Nowadays  you register for a AIM email (although activating it for mail is another additional step).
    It used to be that the bit before the @aim.com bit was the user name you used in Chat applications that could use AIM.
    Previous to the current system you could in fact register just a Screen Name with them.
    Apple (and a few US based ISPs) also have agreements with AIM that their (Apple, etc.)  emails are recognised as Valid AIM Screen Names.
    This means those issued by  Apple ending in @mac.com, @me.com issued from the iCloud registration and @icloud.com.
    (You do have to keep your password to 16 characters or less.)
    From what you are saying you seem to be sure that you can see each other as On Line in your respective AIM Buddy lists ?
    In Messages in both Mountain Lion and Mavericks you do not have to display the Buddy lists
    (See the Window Menu plus the General Section of the Preferences to separate them)
    Are you also saying that in the Video menu the option to allow Screen Shares is Enabled ?
    Is it done at both ends ?
    In iChat you could offer to Share your Screen with a Buddy without the option being On  (they could not ask to share yours or offer theirs).  I have not tested this in Messages.
    6:55 pm      Sunday; November 3, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HT2188 home button no longer working after upgrade to io6 on my iphone4...any ideas to fix this problem

    home button no longer working after upgrade to ios6 software on my iphone4..anything i can do to frix this or apple send me a new device.  phone no good without a home button

    The button's broken.  S**t happens.  Apple will replace your phone.  If in waranty it will be free of charge.  If not, you will pay $149. 
    You can elect to have it repaired at a 3rd party shop near you if you choose, but this will void all warranty if there's any left.

  • My new iPad sound is not working after updating to ios 6.1

    My new iPad sound not working after updating to ios 6.1. Headphones are working fine. I tried all the troubleshoot. can anyone know the answer, plz share with me

    Hi,
    I have exactly the same issue as everyone above. I only get sound through the slider on the ringtone in settings and through my headphones. I do not get any sound anywhere else at all.
    I Have tried:
    - Updating to iOS 6.1.3
    -re starting the device
    -checking that the device is not muted. My slider switch is set to mute rather than lock and is unmuted.
    -going into general settings and reset all settings
    -the device reset several times (waiting until I saw the all important apple logo)
    -removing the last few apps I installed.
    Nothing at all has worked, please help!
    New iPadiPad

  • IPad app no long works after upgrading to iOS 7.1.1

    iPad app no long works after upgrading to iOS 7.1.1

    Did you try deleting then reinstalling the app?  Sometimes developers will need to update their apps for compatibility.  If it still doesn't work after reinstalling, wait a few days to see if an app update becomes available.

  • My iMessage and facetime is not working after updating to ios 7... My ipad works perfectly and it's the same apple id.  Any answers or reasons why on the iPhone 5 is not working???

    My iMessage and facetime is not working after updating to ios 7...
    Any answers on how to fix it?  I've tried to restart, restore connected to itunes, but nothing.

    ACTIVATING FACETIME AND IMESSAGES
    Activating Facetime and Imessages on your phone requires the ability to send SMS messages and depending upon where you are that might be an international SMS.  Check with your carrier to see if your plan supports sending of international SMS messages.  If you are having trouble activating Facetime or Imessages turn them both off on your device and reset the device (Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost)).  Wait for the device to restart and wait a minute and turn Facetime and imessage back on and wait for activation.  If that does not fix things read the following articles:
    http://support.apple.com/kb/TS4268
    http://support.apple.com/kb/ts3367

  • Ipad 2 facetime and Imessage didnt work after updated to IOS 7.

    Hi everyone,my problem is my Ipad 2 facetime and Imessage didnt work after updated to IOS 7. When i try to login ,it's keep saying
         "facetime activation could not sign in please check your network connection" or
         "fImessage activation could not sign in please check your network connection"
    so,i reset everything and reset my network too,but nothing change.
    BUT,when i connect my ipad 2 with my iphone using ad-hoc,the facetime and Imessage worked really good,just like normal.
    And my iphone using Optus network.,So when i connect like that,my iphone using 3G and share ad-hoc to my ipad and everything work fine.
    SO,anyone having idea of how to fix this problem,please,help me. And thanks alot for your time .I just want everything working normally just like before i update to IOS 7.
                   NOTE : before i update my ipad and my iphone,everything worked fine with my wireless router. It's just happen to my ipad since the update.
    Thanks alot for your time ,any idea will be very helpful to me at this time. Again,thanks for you help .

    backup the device with itunes.
    Restore the device with itunes and set up as new.
    Sign into the facetime and imessage to activate it.
    After that is done and activation is good.
    Restore from the backup.
    Then make sure to sign into facetime and imessage again and you should be good to go

  • Iphone 4 personal Hotspot not working after update to IOS 7.1 India BSNL cellular

    Iphone 4 personal Hotspot not working after update to IOS 7.1 India BSNL cellular

    BSNL is not a supported carrier. Personal Hotspot requires carrier support and provisioning of the account to enable it. iOS 7.1 disabled the ability to manually configure Personal Hotspot on unsupported carriers.

  • 3G is not working after updating to iOS 6.1

    My 3G connection is not working after updating to iOS 6.1. I have tried all possible solutions like resetting the network, restarting the phone etc.
    With this kind of bugs in every update, Apple will no more be THE Apple.
    There are bugs which have not been fixed even in the subsequent updates. SMSs going blank being one of them.
    Miss you Sir Jobs.....

    I have since managed to sort mine out - when the phone was updated it wiped out the network settings. 
    I was able to reset them by manually putting the information in:
    Settings - General - Cellular - Cellular Data Network and then I put in the correct details for APN, username and Password in the relevant sections and now it works OK.
    Hopefully it will work for others too

  • Wifi iPad 3 charger stopped working after updating to iOS 6, help!

    Wifi iPad 3 charger stopped working after updating to iOS 6.  The little iPhone charger charges it very very slowly, but the charger gets really hot after a while.  I restored it and everything works but the charger.  It's only a few months old, should I try a new iPad wall charger block?

    Hi,
    I did this after reading the forums and it made no difference. it has actually charged from 14% to 67% but thats taken over 12 hours.
    Will monitor it and if no joy will go to a apple store
    Thanks

  • Iphone 4s Cellular data not working after updating to ios 6.0 .

    How to fix my cellular data, is not working after updating to IOS 6.0 ?

    Hey my wifi quit about a month ago,  and im running 5.1.1.  I thought the fix would be to download 6.0,  I guess not
    I have a 4s, first it was charging problems now this...argh!

  • Head phone volume controls are not working after updating to ios 6.1 y?

    head phone volume controls are not working after updating to ios 6.1 y?

    I have tried my head phone with other iphone still the same problem may be my head phones has been not working need to chek my iphone with other head phones which are working

Maybe you are looking for