Icloud has unexpectedly stopped?? Can anyone explain this happens?

Every time i go to to icloud.com i only get the message "icloud has unexpectedly stopped" but in my wife computer it works just fine.
Anyone has any ideas why is this?
Thanks in advance.
Andre

Welcome to the Apple community.
Have you tried restarting your browser and trying again or clearing the cache from your browser and trying again.

Similar Messages

  • The home button has stopped working on my iphone 5c. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode.

    Have an iphone 5c 8g. The home button has stopped working. Did the same a few months ago and recovered 24hrs later. Can anyone explain this problem. Phone still in warranty. Had steam issue recently but this was after last home button episode and no evidence of damage.

    If you are playing in hockey arenas a lot or if you are bringing it into bathroom same time as shower it may not seem like much but overtime the steam can acquire and build up in the phones usb dock flex cable swell as the home button flex cable. Bring again into apple store and should be covered under warranty again. could also be a delay in a 8gb 5c software may just be very lag.

  • Does anyone else get the error message :iCloud has unexpectedly stopped"?

    I am visiting South Africa and realy heavily on access to my iCloud. For the past 48 hours iCloud seems to be down and I keep getting the error message "icloud has unexpectedly stopped". Apple has not acknowledged the problem, yet. Does anyone else experience similar issues? Any suggestions on how to access icloud.com?

    I'm having the same problem on my wife's computer. I successfully joined several shared calendars from my account, and suddenly started getting this message on the last one. I've tried again repeatedly over the last 24 hours, including sending a new invitation, logging her out of iCloud website, etc.
    Did you find any resolution to the problem?

  • TS3988 I have an icloud account and I view my mail with Mail V5.2. I recieve my email but the senders get messages saying the delivery failed. Can anyone explain this or help me.

    I have an icloud account and I view my mail with Mail V5.2. I recieve my email but the senders get messages saying the delivery failed. Can anyone explain this or help me.

    Thank you for replying.    Yes I deleted the old email address..   

  • Can anyone explain this query.?

    Can anyone explain this query.?
    select nvl(s.p_id,q.p_id),nvl(s.p_type,q.p_type),nvl(s.p_line,q.p_line),
    nvl(s.sales2004,0),nvl(s.sales2005,0),nvl(q.quota2004,0),nvl(q.quota2005,0)
    from sales s
    full outer join quota q on(s.p_id = q.p_id and s.p_type=q.p_type and s.p_line=q.p_line)

    from sales s full outer join quota qTable quota is outer joined to table sales , if there are no matching records in table quota then also the query retuns the sales record with null values for the corresponding quota record columns
    NVL() has been used to handle such cases

  • Since syncing with iCloud all my photos in my photo app are much lower resolution than they were before. Can anyone explain what happened an how I might get back my high resolution photos?

    Since syncing with iCloud all my photos in my photo app are much lower resolution than they were before. Can anyone explain what happened an how I might get back my high resolution photos?

    Thanks again.
    Unfortunately I don't have iPhoto (running Windows).
    I did, however, figure out a work-around.
    I created an empty directory on my computer, and told iTunes to "Sync Photos from..." that empty directory. This deleted all the photos from the iPod (go figure).
    I then set the "Sync Photos from..." dropdown back to directory that actually contained all my photos, and sync'd again.
    And, yes, they all loaded onto the iPod at their better, higher resolution.
    Thanks for all your help. Photos (and wallpaper) are perfect, again

  • TS4003 'icloud has unexpectedly stopped' error message when trying to login to icloud on my PC

    I receive an error message that states "icloud has unexpectedly stopped" when trying to log into icloud.com on my PC.  Any suggestions on how to fix this?

    There are now several threads about this, all starting around 29th June
    https://discussions.apple.com/community/icloud/search.jspa?peopleEnabled=true&us   erID=&containerType=&container=&spotlight=true&q=Contacts+has+unexpectedly+stop p ed
    This is clearly a problem with the service, not our browsers - any idea how to raise Apple's awareness of it?
    I've clicked "I have this problem too" on the top four threads, I guess if everyone does likewise....

  • Icloud has unexpectedly stopped

    When I open www.icloud on my pc I receive the followind "icloud has unexpectedly stopped."  How do I correct this?

    Have you been able to fix this problem of getting "ICloud has unexpectedly stopped".  I get it everytime I try to log in to ICloud on my computer.  I do not have a problem using my daughters computer. They are both Windows based laptops and running Microsoft 7. I encountered this when we went to try and use the app find my ipod touch. It used to be Mobile Me but now on ICloud. Any help will be greatly appreciated. [email protected]

  • Can anyone explain this to me, please. It's a static section question.

    Can anyone explain this to me, please. It's a static section question.
    I came across the following style of programming recently and I would like to know what the Static section is actually doing in the class. Thx.
    Here is the code.
    public class ClassA {
         private static Hashtable ClassAList = new Hashtable();
         private ClassB cB;
         private Vector goodLink;
         private Hashtable classCList;
         static
              ClassA cA = new ClassA();
              ClassAList.put("whatever", cA);
         public static ClassA getClassA()
              return (ClassA) ClassAList.get("whatever");

    hi,
    The static section shall be loaded before it's constructor is called. (i.e at the time of loading the class). Therefore making it available for any other objects to call.
    hope this clarifies ur question
    prasanna

  • Can anyone explain this: Numeric or Value Error Line 1

    I have a stored procedure that starts out like so:
    PROCEDURE test_proc(param1 IN VARCHAR2, param2 IN VARCHAR2, param3 OUT
    SYS_REFCURSOR) IS
    v_var varchar2(5);
    BEGIN
    SELECT * FROM. . .
    The procedure tested fine in PL/SQL Developer. When calling from
    ODP.NET like so. . .
    OracleCommand cmd = new OracleCommand("test_proc", <connection>);
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.Add("param1", "somevalue");
    cmd.Parameters.Add("param2", "XX");
    cmd.Parameters.Add("param3", OracleDbType.RefCursor,
    ParameterDirection.Output);
    DataSet ds = new DataSet();
    OracleDataAdapter da = new OracleDataAdapter(cmd);
    con.Open();
    da.fill(ds);
    con.Close();
    . . .the procedure executed as expected. If I changed the value of
    param2 to "XXX" or any value three chars long I got the "ORA-06502:
    Numeric or Value Error at Line 1" error.
    After beating my head against the wall for hours, I tried changing the
    size of v_var to 50, and the error disappeared. Mind you, the error
    was being thrown long before v_var was being set further down in the
    proc. Even more interesting is that the possible values of v_var were
    all less than 5 chars wide. Most interesting: the value of p_param2 had nothing whatever to do with v_var.
    Can anyone explain this?

    Hi,
    Is your database 9206 by chance? Re: Error ORA-06502 PL/SQL
    Cheers,
    Greg

  • HT3275 Please can anyone explain this to me

    Please can anyone explain this to me - thank you -
    Time Machine couldn't complete the backup to time capsule - The backup disk image “/Volumes/Data-1/Alyson’s iMac.sparsebundle” is already in use.

    The explanation is a long standing bug in Lion and Mountain Lion, but what you might really be asking is how to fix the problem.
    Pull the power cord from the back of the Time Capsule
    Wait a few minutes
    Plug the power cord back in
    If that does not fix the problem you will need to dig deeper.  See #C12 in Pondini's excellent Time Machine - Troubleshooting.
    http://pondini.org/TM/Troubleshooting.html

  • When i go to my music and play a song it sounds like my headphones are blown but when i play songs on youtube they sound fine, can anyone explain this to me? please and thank you

    when i go to my music and play a song it sounds like my headphones are blown but when i play songs on youtube they sound fine, can anyone explain this to me? please and thank you

    Try:
    - 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.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.      

  • I went to silence my iPhone 5s and had a box pop up--looked like one of those boxes telling me turning on Location Services would help--telling me I needed to change my password within 60 minutes.....I turned the phone off.  Can anyone explain this to me?

    I went to silence my iPhone 5s and had a box pop up--looked like one of those boxes telling me turning on Location Services would help--telling me I needed to change my password within 60 minutes.....I turned the phone off.  Can anyone explain this to me?

    I went to silence my iPhone 5s and had a box pop up--looked like one of those boxes telling me turning on Location Services would help--telling me I needed to change my password within 60 minutes.....I turned the phone off.  Can anyone explain this to me?

  • HT1430 I downloaded the lateest update and I can't turn off my apps like I did on 6os. The 7os is different and I can't seem to find out if apps turn off now by just closing them. Can anyone explain this to me? Please

    I downloaded the lateest update and I can't turn off my apps like I did on 6os. The 7os is different and I can't seem to find out if apps turn off now by just closing them. Can anyone explain this to me? Please

    Double tap the Home button and swipe the app preview page up
    iOS 7  also allows apps to run while they aren't open.
    You can manage these here:
    Settings > General > Background App Refresh

  • Post Moved Can anyone explain this baffling puzz...

    Post moved to Other BB Queries http://community.bt.com/t5/Other-BB-Queries/Can-anyone-explain-this-baffling-puzzle-with-BT-Total-BB...
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

    I tend to think that the comments about MAC address filtering and wireless security are a bit misleading - if these things were the problem then it would not work at all as opposed to working sporadically.
    I must admit, reading your post I had exactly the same problem moving into a new house last year, my desktop PC in my room would get terrible wireless reception with constant erroring and was practically unusable whilst a laptop sat next to it was just fine. I tried a million different things and eventually bought an external wireless antenna like the one here:
    Edimax EA-IO7D 7dBi Indoor Omni-Directional High Gain Antenna with Desktop Stand - 1m Cable
    It solved the problem for me though I am still mystified as to what the problem is - I suspect that there is something in the environment causing interference though I don't know what. My house is of average size and fairly modern with thin walls so I would not anticipate any problems.
    Some things to try are to move the PC right next to the hub (or vice versa, whichever is easier) and see if this improves things or borrow a wireless router from a friend, turn off all encryption and see what signal strength you get there.

Maybe you are looking for

  • Can I hook up New Mac Mini to my old imac?

    Can I hook up New Mac Mini to my old imac to share the display? I want to upgrade my iMac since I can not add more memories... but thought may be I can add New Mac Mini and use that along with my old iMac.. Will this work?

  • Is there an application that connects numbers to pages

    I'm trying to merge my numbers work pages into a pages document.  I use this process on my laptop to do quotes for my business, I have incorporated an Ipad into my sales process and would like to add by estimating program to the ipad so I don't have

  • Variant Configuration including Bitmap

    Hi there, we using often small bitmaps to show the customers a hint to the selected articles. The output of SD Order  are sapscript forms and we solve this  with include of an Bitmap in sapscript article description. Now i try to include such a bitma

  • PS Touch for tablet on Note 3

    Now before my old Nexus 7 died I had an older version of PS Touch for it, and found my back up of the apk and it works just fine on my Note 3... Is there any way I can purchase the latest version and install it outside of the play store onto my Note

  • Dout in MBRC

    Today I have read db_multiblock_read_count paramater while reading there is formula for setting the vlaue for this parameter. max os io chunk size/db_block_size How to find the i/o chunk size in Linux 4.0 ? dont tell me from 10.2 release this paramet