Short freezes while updating Google calendars

After updating to Mac OS Lion iCal "freezes" at starts while it updates my Google calendars. I can't click or move anything in iCal. How can I solve this problem?
Steffen

I have the same problem.  I updated to 10.7.1 and all of a sudden, my mid-2010 MBP 15" starts up, I log in and it starts iCal and freeze.  No keys no mouse clicks no anything works.  Help!

Similar Messages

  • Ipad 2 freeze while updating OS2

    My Ipad2 2G (64Gb) freezed while updating OS5 yesterday, without finishing updated to OS5, the USB cable was unplugged to the PC itunes. Now ipad2 freezes with ipod logo on the middle of screen. If Ipad2 is plugged again with ITunes, iTunes can not identify Ipad2 with message "iTunes could not connect to this iPhone because an unknown error occurerd (OXE8000065).
    How should it be solved? How to stop the freeze and restart Ipad2?

    I found the way already, just push start button and home bottom simultanuously and hold for 10 seconds, than Ipad will shut down. After that, push start button to start up back to the system. It works.

  • Computer freezes while updating security.

    Hello again. My computer's problems have only intensified. Originally my computer would only freeze while multi-tasking or under heavy graphic stress. Now, the computer freezes while preforming mundane tasks such as moving a window. It's branched into other problems.
    I cannot complete the download of the new security update. My computer freezes mid-download, regardless if I'm doing anything else or not.
    My computer is even freezing while loading itself up. I have been told previously that my computer has a video-card issue and that the card was integrated into the computer. Now, I'm not so sure that is the problem. These freezes and glitches started some time after I performed a virus and spyware scan. I think that the scan may have corrupted a file during it's search.
    Thanks in advance.

    Hello again. My computer's problems have only
    intensified. Originally my computer would only
    freeze while multi-tasking or under heavy graphic
    stress. Now, the computer freezes while preforming
    mundane tasks such as moving a window. It's branched
    into other problems.
    I cannot complete the download of the new security
    update. My computer freezes mid-download, regardless
    if I'm doing anything else or not.
    My computer is even freezing while loading itself up.
    I have been told previously that my computer has a
    video-card issue and that the card was integrated
    into the computer. Now, I'm not so sure that is the
    problem. These freezes and glitches started some
    time after I performed a virus and spyware scan. I
    think that the scan may have corrupted a file during
    it's search.
    Thanks in advance.
    I had the same problem. It was finished with the update and when I pressed the restart button, it was ready to restart, then I got the blue screen with that loading image that goes round in a circle. I waited like 5-10 min and by the time that happened the screen was blank, but it still made noise that the computer was still running. So I did the cold shut down and restarted it.

  • Problem while bringing Google Calendar events to Oracle Tables

    Hi Friends,
    I have written the following code to bring the Google Calendar Events to Oracle Tables...
    CREATE OR REPLACE procedure XX_DEV.authenticate_service_test(p_email in varchar2,p_password in varchar2)
    is
    l_request utl_http.req;
    l_response utl_http.resp;
    l_params varchar2(255);
    l_resp_data VARCHAR2(4000);-- CHARACTER SET;
    l_auth_token VARCHAR2(4000);
    l_cal_entry CLOB;
    v_response_xml XMLType;
    v_entry_id varchar2(100);
    xml_result xmltype;
    cnt number:= 0;
    v_xmldoc CLOB;
    v_start_time date;
    v_end_time date;
    cursor c1 is select x.title title, x.content content, x.where where, x.start_time start_time, x.end_time end_time, x.entry_id entry_id from
    xmltable('feed/entry'
    passing xmltype(v_xmldoc)
    columns title varchar2(1000) path '/entry/title/text()'
    ,content clob path '/entry/content/text()'
    ,where clob path '/entry/gd-where/@valueString'
    ,start_time varchar2(100) path '/entry/gd-when/@startTime'
    ,end_time varchar2(100) path '/entry/gd-when/@endTime'
    ,entry_id varchar2(1000) path '/entry/id'
    ) x ;
    begin
    -- access the oracle wallet to allow us to make an https request
    utl_http.set_wallet(path => 'file:/u01/app/oracle/product/11.2.0/owm/wallets/oracle11/',password => 'srisys123');
    -- set up the request body with our credentials
    l_params := 'Email=' || p_email || '&Passwd=' || p_password ||'&service=cl' || '&source=e-DBA-test-1.0';
    l_request := utl_http.begin_request('https://www.google.com/accounts/ClientLogin','POST','HTTP/1.1');--accounts/ClientLogin
    -- set the request headers
    utl_http.set_header(l_request,'Content-Type','application/x-www-form-urlencoded');
    utl_http.set_header(l_request,'Content-Length',length(l_params));
    -- write out the request body
    utl_http.write_text( l_request, l_params );
    -- get the response
    l_response := utl_http.get_response( r => l_request );
    dbms_output.put_line('Status Code: '||l_response.status_code);
    loop
    utl_http.read_line( r => l_response, data => l_resp_data, remove_crlf => TRUE);
    dbms_output.put_line(l_resp_data);
    if substr(l_resp_data, 1, 5) = 'Auth=' then
    l_auth_token := substr(l_resp_data, 6);
    end if;
    end loop;
    exception
    when utl_http.end_of_body then
    null;
    dbms_output.put_line('Auth Token: '||l_auth_token);
    utl_http.end_response ( l_response );
    -- replace the substitution variables in the template with the parameter values
    --utl_http.end_response ( l_response );
    l_request := utl_http.begin_request(
    'http://www.google.com/calendar/feeds/default/private/full',
    'GET',
    'HTTP/1.1');
    utl_http.set_header(
    l_request,
    'Content-Type',
    'application/atom+xml');
    utl_http.set_header(
    l_request,
    'Authorization',
    'GoogleLogin auth='||l_auth_token);
    l_response := utl_http.get_response( r => l_request );
    utl_http.read_text(
    l_response,
    l_cal_entry
    dbms_output.put_line('Status Code: ' || l_response.status_code);
    /*select replace(l_cal_entry,'<?xml version='||'''1.0'''||' encoding='||'''UTF-8'''||'?>','') into l_cal_entry from dual;
    select ltrim(l_cal_entry,substr(l_cal_entry,1,148)) into l_cal_entry from dual;
    select '<feed'||l_cal_entry into l_cal_entry from dual;
    select replace (l_cal_entry,':','-') into l_cal_entry from dual;*/
    dbms_output.put_line('Calendar Event: ' || l_cal_entry);
    -- xml_result :=XMLType.extract(l_cal_entry,'//title');
    delete from xml_test1;
    insert into xml_test1 values (l_cal_entry);
    utl_http.end_response ( l_response );
    select DATA into v_xmldoc from XML_TEST1;
    execute immediate 'alter session set events = ''31156 trace name context forever, level 2''';
    for i in c1
    loop
    l_cal_entry:= NULL;
    dbms_output.put_line('Result: '||i.title||'*'||i.content||'*'||i.name||'*'||i.start_time||'*'||i.end_time||'*'||i.entry_id);
    begin
    select 1 into cnt from events_bkp where entry_id = i.entry_id;
    select nvl(to_date(rtrim(replace(i.start_time,'T',' '),substr(replace(i.start_time,'T',' '),12,20))||
    replace(substr(replace(i.start_time,'T',' '),12,8),'-',':'),'yyyy-mm-dd hh24:mi:ss'),sysdate) into v_start_time from dual;
    select nvl(to_date(rtrim(replace(i.end_time,'T',' '),substr(replace(i.end_time,'T',' '),12,20))||
    replace(substr(replace(i.end_time,'T',' '),12,8),'-',':'),'yyyy-mm-dd hh24:mi:ss'),sysdate) into v_end_time from dual;
    update events_bkp set description = i.title, notes = nvl(i.content,'No Notes'), start_date_time = v_start_time, end_date_time = v_end_time
    where entry_id = i.entry_id;
    exception when others then
    select nvl(to_date(rtrim(replace(i.start_time,'T',' '),substr(replace(i.start_time,'T',' '),12,20))||
    replace(substr(replace(i.start_time,'T',' '),12,8),'-',':'),'yyyy-mm-dd hh24:mi:ss'),sysdate) into v_start_time from dual;
    select nvl(to_date(rtrim(replace(i.end_time,'T',' '),substr(replace(i.end_time,'T',' '),12,20))||
    replace(substr(replace(i.end_time,'T',' '),12,8),'-',':'),'yyyy-mm-dd hh24:mi:ss'),sysdate) into v_end_time from dual;
    insert into events_bkp values(events_seq.nextval, 9, 1,1, 4, i.title, nvl(i.content,'No Notes'), v_start_time, v_end_time,'','',
    4, 1, sysdate, 1, sysdate, 13, i.entry_id);
    end;
    commit;
    end loop;
    execute immediate 'alter session set events = ''31156 trace name context off''';
    end authenticate_service_test;
    I am able to execute it successfully with my username and password but I am getting error when the number of events are more than 15...
    The parameter l_cal_entry which is of clob datatype is not holding the whole xml data.
    Please advice....
    Thank You,
    Srikanth

    Hi Friends,
    Now I am able to load all the events of a user by adding the following code
    loop
    utl_http.read_text(l_response, l_cal);
    l_cal_entry:= l_cal_entry||l_cal;
    end loop;
    but I am getting problem when the user has more than one calendar. The Begin_request link I am using is...
    'https://www.google.com/calendar/feeds/default/private/full'
    Using this, I am able to get only the events of a default calendar associated to the user.
    How can I get the events of all calendars or a particular calendar associated with the user.
    I may have to change the above link... I have tried with various combinations by appending calendar id but I am unable get the right combination
    Please advice...
    Thank You,
    Srikanth

  • Firefox is displaying improper dates and times while using Google calendar, however they display correctly in Internet Explorer. Firefox has always worked right before, but not now.

    The Google calendar's information is accurately saved on our end on this sample page.

    Works for me on Linux.
    You can try http://kb.mozillazine.org/Time_and_time_zone_settings

  • IOS 6 freezing while updating.

    While updating my ipod touch to the iOS 6, it went to the start up screen and the loading bar was stuck at half way and it froze for about an hour and did not move. I restarted my ipod and put it on my dock and took it off and restarted it multiple times and it goes to either a blue, white, black, or a dark screen with a faint apple icon. I need help to get my ipod back on or how to restore it, because the computer does not recognize that my ipod is connected and I do not know what to do from here. Please help!

    My daughter got her iPod Touch 4th Gen stuck early Saturday morning while trying to update to IOS 6. Thanks to a post by you, I was able to get it out of the white screen and updated via restore function in iTunes. It tried to fight me though. When I got the iTunes logo with USB arrow, all was going well with restore until while the IOS 6 file was downloading, the iPod's screen went back to white. iTunes continued to download the update file (850 MB). I had to unplug and let the battery die again. I plugged it back in to get the Apple logo to come back on the screen. Note: I had to be paying attention when it appeared because it didn't give me long to go through the instructions in your post. I missed it once and I had to start over. What I had to do was hold the power and home button at the same time after the Apple logo appeared to get the iPod to tun off. Then I held the home button and plugged into the USB port on my PC and then the iTunes logo with USB arrow showed up. Initiated the the restore function and all went well that time because the file was already complete and ready when iTunes needed it. It can be frustrating, but don't give up. Stick with it and try to get useful information on the web like I did because the iPod is useless with that horrible whie screen. It got stuck on the Apple logo 2 weeks ago and had to turn to the web to get help on that too. BIG SHOUT OUT TO YOU SUPERMURPH!!!!!

  • IPhoto 09 Freeze While Updating Library.....Everytime

    I recently bought a Macbook Pro 15" 2.4GHz and installed iLife 09. On my previous computer (Powerbook 12" 1GHz) I was running iPhoto 2.0.1. I had copied that entire HD to an external drive. I plugged in the external drive to my new Powerbook and copied the User>Pictures>iPhoto Library Folder to appropriate location on the new HD. When starting up iPhoto 09, I got the message that it needed to update the library. Every attempt I made resulted in iPhoto freezing with the "Updating photo library...Time remaining" message. It often froze with the same amount of time remaining. I have tried several remedies: I deleted the com.apple.iphoto.plist from the preferences folder. I also tried to use BatChmod after following instructions in another forum, but that didn't seem to help. I also downloaded iPhoto Library Manager and used its rebuild function. This appeared to work and all the pictures are present (minus about thirty, but I think they were duplicates), but all 7,000+ got imported with the same date (DEC 31 2000) and were randomly arranged into about a dozen Events. Also, none of the Albums were transported. I don't have time to individually rearrange all the photos and rebuild all the albums. I would be happy solving either one of the problems. Thanks.

    Thanks for responding Larry. I tried that, but unfortunately it did not work.
    Based on what I read in some other threads, I tried forcing iPhoto to rebuild the library by holding command-option while starting iPhoto, but that did the exact same thing. I ended up downloading iPhoto Library Manager and using that to rebuild the library, which worked. There was one photo that could not be copied over (corrupted file or something), so that's probably what was making iPhoto hang. Luckily my mom had a backup on a CD.

  • Freeze while updating after retoring, resetting, charging etc etc

    itunes didn't recognize ipod and !folder showed on ipod screen. After charging, resetting, & restoring, I got a disk insertion message. I erased disk and could then import songs to ipod and play songs, but as ipod was mid update of itunes library it froze. Continues to freeze on random songs even updating manually. Did I miss a step? Or does my ipod need work?

    You know,
    I'm on my second ipod now. I purchased my last one in late December of 2004. By March, Apple had to replace that one. Now, the replacement that they had sent me is freezing to the point of not functioning. 1 year is PATHETIC for a $300 dollar product. However, I NEED an mp3 player. I couldn't live without one. Am I going to buy another ipod...I don't know. I can understand the battery needing to be replaced, but total failure within such a short period of time is atrocious! When I contacted Apple, I was told that there is nothing that can be done, and that, next time, I should buy the AppleCare. So, for $60 more, I'll have my purchased replaced for 2 years. Because it sure won't last that long. That is not acceptible!

  • Freeze while updating version

    please help...my iphone freeze after fail to update to io6. Updating by itune is succeesful.. but when in the middle transfering hdware to iphone a message pops up telling a problem detected ...and at apple logo it freeze...

    You know,
    I'm on my second ipod now. I purchased my last one in late December of 2004. By March, Apple had to replace that one. Now, the replacement that they had sent me is freezing to the point of not functioning. 1 year is PATHETIC for a $300 dollar product. However, I NEED an mp3 player. I couldn't live without one. Am I going to buy another ipod...I don't know. I can understand the battery needing to be replaced, but total failure within such a short period of time is atrocious! When I contacted Apple, I was told that there is nothing that can be done, and that, next time, I should buy the AppleCare. So, for $60 more, I'll have my purchased replaced for 2 years. Because it sure won't last that long. That is not acceptible!

  • ITunes 9 freezes while "Updating iTunes Library"

    I have never had an issue with iTunes before, and after installing the newest version, I opened iTunes for the first time. It successfully went through the "Checking iTunes Library" progress bar, but when the "Updating iTunes Library" progress bar comes up, it gets to about 80% and then freezes my entire computer. I've tried uninstalling and reinstalling with the same issue. I've tried uninstalling and installing an older version, but it would not allow me to start the old version because it said something had already been created by iTunes 9. Has anyone else had this issue? Any ideas how to fix it? I never realized how dependent I was on iTunes until I wasn't able to use it anymore!

    I have been having the same problem. Then I got the idea to cut and paste the message that comes up when I manually ended the program. That is what got me the answer to my problem. Someone posted that sometimes malware will try to take the place of other files. I have McAfee and it didn't find anything. But I did download a free program called Spybot Search and Destroy. It did, indeed find malware on my PC and after it got rid of it, my itunes is working as it should!!!

  • Software Update Freezes While Updating OS

    Hello Community,
    MacBook Pro: Core 2 Duo, 2.4 GHz, 4 GB RAM
    I'm sure others have had this problem and I'm wondering if anyone knows of a reason for it.
    For quite a while, at least since installing Snow Leopard, when I try to install OS updates using the Software Update program the same sequence of events occurs:
    1) The Updater thermometer appears and increases rapidly at first while 'Writing Files' appears above.
    2) Gradually the thermometer slows down as it reaches its final 1/4.
    3) As the thermometer gets to the end it slows down exponentially until,
    4) The thermometer appears to have reached the end but nothing further happens, and
    5) I have to manually shut down the machine and reboot.
    I have worked around this problem by downloading the installer directly from Apple, avoiding Software Update, and the installations have proceeded as expected and without incident.  But, why is Software Update not completing the installation?
    Thanks,
    JAClay

    If you cannot boot into the recovery partition or Internet recovery I suggest a last gasp attempt.
    Try SMC and PRAM resets:
    http://support.apple.com/en-us/HT201295
    http://web.archive.org/web/20140711222006/http://support.apple.com/kb/ht1379
    Then try a Safe Boot:
    http://support.apple.com/en-us/HT201262
    If no success, an appointment at an Apple store genius bar becomes the best option.
    Ciao.

  • N82 Freeze While Updating Plz Quick Help

    i was updatig my N82 firmware and suddenly my computer freeze after it says failed to update remove battery and try again when i was trying again my computer freeze and i had to restart it and my phone shutdown and turned off when i try to open it nothin happen and even when i try to reupdate it says unable to find phone.... plz help wht should i do ? i tried to reupdate 10 times and always say same thing.... and i can't send it to nokia care cause using N82 on egypt is illegal and they dont fix it here...
    plz help me wht should i do...i can do anything from computer so i can fix it... but send it outside its immposible...
    Solved!
    Go to Solution.

    Hi ahvampire
    Have a look at this post by psychomania which is fairly succinct:
    /discussions/board/message?board.id=swupdate&message.id=36905#M36905
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • IPhone 3GS -- Repeatedly freezes while updating to iOS 6

    Perfectly working iPhone 3GS initially, then I tried upgrading to iOS 6.  It froze at about 55% to 60% (based on the progress bar) and then after awhile it went black.  No way to get it back easily.  Repeatedly, I hit the two buttons together to reset, sometimes it works and I get the Apple symbol, but it hangs there permanently if I am not connected to the computer and, if I am, with iTunes running, it shows the phone there but won't let me click to "see it".  The iPhone then tries again to update, but freezes again at 55% to 60%.  There seems to be no way to break this cycle.
    Anyone have ideas or suggestions?  It appears that the iOS 6 update has killed my iPhone.

    I'm having exactly the same issue. Phone now won't do anything.

  • ITunes 7.1.1.5 freezes while updating iTunes library

    Oh, why oh why did I upgrade? I wasn't thinking. I had 7.0 working just fine and I had to upgrade to 7.1. Stupid me...
    Anyway - it loaded fine, but when opened it begins to update the iTunes library, and gets about 80% of the way through that and locks up. Does it every time.
    I tried re-installing. I made sure my windows was up to date. Running Win-XP - this is on my desktop PC. I even tried deleting the iTunes preferences and letting it create new ones. Same issue happens no matter what.
    So now I can't even use iTunes. What a crock it is that Apple stuff is foolproof and easy to use....

    I have been having the same problem. Then I got the idea to cut and paste the message that comes up when I manually ended the program. That is what got me the answer to my problem. Someone posted that sometimes malware will try to take the place of other files. I have McAfee and it didn't find anything. But I did download a free program called Spybot Search and Destroy. It did, indeed find malware on my PC and after it got rid of it, my itunes is working as it should!!!

  • How do you add a google calendar to muse web site, that updates are synced

    how do you add a google calendar to muse web site, that updates are synced?

    You can add Google Calender using iframe which Google provides if you go to calender settings.
    Once you insert this code in Muse page through Object > Insert HTML , the calender will be displayed on page.
    https://support.google.com/calendar/answer/41207?hl=en
    Thanks,
    Sanjit

Maybe you are looking for

  • Upgrade to 7.20

    We are close to finishing the first pass at upgrading our R/3 6.4 SAP system to 7.20. However the restart of the T03 system has stopped at the MAIN_NEWBAS/STARTSAP_NBAS phase. This is the error message. Checks after phase MAIN_NEWBAS/STARTSAP_NBAS we

  • Error V0 104 while adding select option on customized screen

    Hi all, I have a screen added on the standard transaction IW21 (with selection screen definition and called like subscreen). On this screen I have some SELECT-OPTIONS and when I press the button of selecting multiple values, I get the following messa

  • How to convert values in tcode CA01 - while creation of Routing

    Hi Group, I have a requirement to load data for Routings using tcode 'CA01' using the LSMW with BAPI using idoc type 'ROUTING_CREATE01'. the issue is while creating the Routing operations directly through tcode 'CA01', there were certain Unit of meas

  • LIST_AUTH

    Hi, What does following lines mean in mappings file LIST_AUTH *;*|* $[IMTA_LIBUTIL,imdlauth,$2+$1@$0] They are not there in default file ...but I have seen these entires in some servers?? This is not mentioned in admin guide... RGds

  • Lost all contact after updating

    I lost all my contact after updating my phone and can;t get them back. I did sync mu phone and also improt sims contact and still nothing. What do I do??