Calendar issue with Mavericks?

I just updated to Mavericks... I opened Calendar and I got this error -
The server responded:
“403”
to operation CalDAVAccountRefreshQueueableOperation.
I hit the OK button and then it pops up right away once again, over and over. I can't do
anything to my calendar, I can't even get to my preferences...

I hit OK a few times as i attempted to hit the preferences in the 2 seconds the error was gone.. I got to accounts and deleted my GMAIL account..
Seems to be fine now.

Similar Messages

  • I use an older Macbook Pro  from 2007 with OS X 10.7 – had issues with Mavericks, so I uninstalled it. I want to get a trial version of AE CS6 but I need to know the specs for it.

    I use an older Macbook Pro  from 2007 with OS X 10.7 – had issues with Mavericks, so I uninstalled it. I want to get a trial version of AE CS6 but I need to know the specs for it.

    System requirements | After Effects

  • Any fix for the PC based network printer communication issue with Mavericks?

    Any fix for the PC based network printer communication issue with Mavericks?

    I just signed up for FIOS and am not experiencing your problem (had enough other ones instead).
    Go to mail preferences ~ click on a mail account ~ click on the advanced tab. The only settings that worked for me were: port 110 SSL OFF, authentication: Authenticated POP (APOP). If I remember correctly when I first set this up another window opened and I typed in my password and never had to do that again.
    Hope this helps.

  • Canon pixma mx922 compatibility issues with Mavericks?

    Thinking of getting canon pixma mx922. Any body had compatibility issues with Mavericks?

    Go to http://support.apple.com/kb/HT3669 for a list of printers that are still supported.
    If you don't see the printer, check Printer software no longer available through Software Update.

  • HT6030 Sound output issue with Mavericks

    There is a sound output issue with Mavericks and Firewire800 Audio devices. I am using a MIO 2882 but now people are having issues with other devices as well. Is this something that will be addressed in an update? If not I will need to downgrade my OS.

    maybe the adapter went bad.....fast. try getting one thats made by sony. or apple. i have had bad luck with some cheap products i bought.
    or maybe thats the brand you have ad luck with. i remember when i use to get some quantom fireball drives, and they just died on me the next week. im down to two and keeping a good eye on them. especially fujitsu. the only ones i have GREAT LUCK with are Seagate and Western digitals drives.

  • Calendar issue with the new iphone 6 plus

    I'm wondering if anyone is experiencing a problem with the default iphone calendar for iphone 6 plus?  I have consulted with apple's tech specialist both in store and online and they can't seem to figure out what's wrong.   They have apparently forwarded the issue to the engineers.  As everyone may know, dots appear under the date if you have added an event to the specific calendar date then the elaboration of the specific event appears on the bottom linear view.  What i have been experiencing on my iphone 6 plus is that the dots disappear as i scroll further and further down to future months and when i do scroll back up the dots also randomly disappears with past months/events.  The elaborated event in the linear view is still there, however, when u highlight the date.  Why is that? We've already rebooted my phone, checked all possible settings issue, unsync then resynced it to icloud, resigned to icloud, reset all settings and even changed to a new phone (thinking it was a hardware defect) but the dots were still disappearing even with the new device.  I even turned off icloud on all my devices and just used the usb cord to sync it from imac to iphone! This nightmare is still happening even without icloud! However, it doesn't do that to my iphone 5! All dots with corresponding events appear on all weeks/months on my iphone 5 calendar.
    Hopefully, someone is experiencing the same issue with their default calendar on the new iphone 6 plus.    I tried my best to describe the issue, so i hope this made sense.  

    M glad I'm not the only one experiencing this!  Because when i spoke to apple techs it sounded like mine was an isolated case as they have not heard any complaints about this! I'll post something on this thread once apple techs have figured it out and get back to me! They initially put my icloud account on troubleshooting mode so they can look into it, however, it wasn't an icloud issue....so, they have yet to firgure it out!  I have already sent them screenshots of what my calendar was doing to my phone.

  • ADF Calendar Issue with MDS

    JDeveloper 11.1.1.4.0
    With the ADF Calendar, I able to programmatically control most of its features such as setting ActiveDay, View, etc.
    But, when I turn MDS on and I interact directly in the calendar (such as changing the views, or clicking on the day which switches the view), any programmatic control I do to it just stops refreshing the calendar.
    I inspected it and data is there, data shows up, activeDay is changed... But the calendar itself just doesn't change its view to the new activeDay.
    Eg. I'm viewing March and I changed the active day to somewhere in August, I will still end up viewing March. No refresh nor flicker.
    This issue is only happening when MDS is turned on.
    I wonder if anyone has got around this issue?
    -Marvin

    Hi Marvin
    I have a issue with Calendar component in ADF , I have similar requirement as you , I want to change the display month of Calendar on selecting the Month for Ex I select May I shud get May's Calendar and if March is selected I want to display March Calendar , I wanted to know how did you implement this ?
    I am trying to set the activeDay of RichCalendar on selection of Month and year , For example I select May 2011, Then in value Change Listener I pass the 01 May 2011 as Date to a method and trying to set the activeDay attribute of RichCalendar so that the Calendar will display the calendar for Month of May with 1st May as active Day. Now I have two questions is such a thing possible using
    below method, setActiveDayCompInstance()
    Second I am getting null pointer exception for the line , why so ??
    reqContext.getChangeManager().addComponentChange(context, calendar, aa);
    My Method for setting active Day
    public void setActiveDayCompInstance(Date activeDay)
    System.out.println(activeDay);
    RichCalendar calendar = getCalendarComponent();
    calendar.setActiveDay(activeDay);
    // Implicitly record a change for 'activeDay' attribute
    AttributeComponentChange aa =
    new AttributeComponentChange(RichCalendar.ACTIVE_DAY_KEY.getName(), activeDay);
    RequestContext reqContext = RequestContext.getCurrentInstance();
    FacesContext context = FacesContext.getCurrentInstance();
    System.out.println("reqContext"+aa +reqContext.getChangeManager());
    reqContext.getChangeManager().addComponentChange(context, calendar, aa); // Null Pointer exception
    Stack Trace for Null pointer
    at org.apache.myfaces.trinidad.change.BaseChangeManager.addComponentChange(BaseChangeManager.java:58)
    at org.apache.myfaces.trinidad.change.SessionChangeManager.addComponentChange(SessionChangeManager.java:64)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.setActiveDayCompInstance(TimesheetCalendarBean.java:1482)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.yearChangeListener(TimesheetCalendarBean.java:1196)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)

  • Ical sync to gmail calendar issues with snow leopard

    I had sync before w/ iCal 3 then it stopped last June.  I'm now running 10.6.8 with the hope that the Sync would be good. Still no luck.  My Gmail account is working find with connection to my Droid just not syncing w/ iCal.  Note I've tried to re-enter the Gmail account with out luck.
    I appreciate the help !
    Thanks

    Harvey,
    The "On My Mac" calendars will not sync, and in my experience are no longer required. They can be safely deleted after making backup copies.
    MobileMe: Troubleshooting MobileMe Calendar issues should help you sort out your syncing problems.

  • Scanning Issue with Maverick and Office Jet Pro 8600

    Just wanted to add my voice to the numerous problem reports.  Specifically:
    1)  I could scan just fine until I upgraded to Maverick (Mac OS 10.9)
    2)  to address the problem, I downloaded the latest HP drivers for 10.9-didn't help
    3)  Tried to use the separate HP Scan application-no luck; couldn't fine the computer (even though I have been printing regularly)
    4)  Based on the HP problem solution posting (which seems a bit out of date), tried to uninstall the software and reinstall; the uninstall would not complete, although it did delete all of my printers.
    It appears that it is finally time to abandon HP for printers, if they can't keep up with Apple's releases.

    Hi amaltz,
    I understand you are having an issue with the scan software working with Mavericks. I can't help you with this. My suggestion is to completely remove all HP software from the computer and reinstall. Follow the instructions below to resolve the issue.
    Scrub
    Open the Applications folder > HP or Hewlett Packard folder > HP Uninstaller
    Click continue, click on one of the printers in the list.
    Hold down Control, Option and Command
    While holding the three buttons down, Click uninstall.
    Reset Printing System
    Click the Apple icon (     ), and then click  System Preferences.
    In the Hardware section, click Print & Fax/Scan. The Print & Fax/Scan  dialog box opens.
    Right-click (or Ctrl +click) in the left panel, and then click Reset printing system…
    Click OK to confirm the reset.
    Type the correct Name  and Password.
    Click OK to reset the printing system. The Print & Fax dialog box shows no printer selected
    Note: This will remove all printers in the print and Fax/Scan, any printer removed can be re-added later by clicking the plus (+) symbol.
    Repair Disk Permissions (I know many of you have done this but because we have now done a scrub it is good measure to ensure non of your permissions differ)
    On the Dock, click Applications, and then click Utilities.
    Double-click Disk Utility.
    Highlight your hard drive/partition on the left (by default this is "Macintosh HD").
    Click the Repair Disk Permissions button at the bottom of the window.
    Once the repair is complete, restart the computer.
    Restart the computer.
    Now you will have a fresh start and be able to reinstall the software. Please let me know if this resolves the issue you are experiencing. If it does not, I will gladly follow up.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Are there any compatibility issues with Mavericks and EMC Celerra File shares, particularly with the SMB protocols?

    Our company uses a EMC Celerra file share, but most of our users are Windows based. We have a small production department of 7 macs. Starting with Snow Leopard, we noticed some issues with SMB. We were able to resolve those issues, but had to wait to upgrade to Lion because there were additional SMB or permissions concerns with the Celerra file share and Lion. Now, we are again waiting to upgrade to Mavricks because of the way it handles user permissions. Does anyone using Mavericks now also connect to a EMC Celerra file share? Thanks! 

    Our company uses a EMC Celerra file share, but most of our users are Windows based. We have a small production department of 7 macs. Starting with Snow Leopard, we noticed some issues with SMB. We were able to resolve those issues, but had to wait to upgrade to Lion because there were additional SMB or permissions concerns with the Celerra file share and Lion. Now, we are again waiting to upgrade to Mavricks because of the way it handles user permissions. Does anyone using Mavericks now also connect to a EMC Celerra file share? Thanks! 

  • Calendar Issues with ActiveSync Exchange 2010 14.1.438 to iPhone IOS 6.1.4

    The iPhone is missing some new calendar meetings and appointments. It is so random, some of them are meeting request I accepted and some of them are appointment I made on Outlook 2010. I see them on Outlook 2010 and OWA. If I delete the meeting or
    appointment from Outlook and then put it back; it shows up on my iPhone. It also sync if I delete the syncing of the calendar to the iPhone and put then add it back on.

    Hello,
    Please refer to the following article to troubleshoot your issue.
    http://blogs.technet.com/b/exchange/archive/2010/07/01/3410271.aspx
    http://support.microsoft.com/kb/2563324
    If the issue persists, please collect some logs.
    http://blogs.technet.com/b/exchange/archive/2012/01/31/a-script-to-troubleshoot-issues-with-exchange-activesync.aspx
    Cara Chen
    TechNet Community Support

  • RIM Facebook 1.7 Calendar Issues (with Google sync)

    I know that the Facebook app calendar issues have been documented all over the web and in other posts on this forum; but I still have been unable to figure out the best solution to this problem. 
    I am using the latest version (1.7) of the Facebook app and the latest version of google sync.
    Despite unchecking the calendar sync option for the Facebook app, it ALWAYS eventually hijacks the "device default" calendar for my BB (curve 8330) and adds all my friend's birthdays.  It sometimes happens after a battery pull, other times it seems random.  Despite deleting the facebook cical entry, it will always come back eventually. 
    I am unable to set anything other than facebook in my default calendar option under options>advanced>device default. When I delete the facebook cical, the default calendar selection (options>advanced>default services) disappears entirely I assume that this is because there is no option other than the device default. 
    I have NEVER had a cical entry for my google calendar.  I'm assuming the google sync app does not need a cical entry.  I'm also assuming that the lack of a cical entry is what is preventing me from selecting my google calendar as my default, which is what many suggest to solve this problem.  I cannot select my google calendar as a default, which isn't a problem until facebook hijacks my calendar.
    Previous to FB app 1.7, everytime my calendar was hijacked, google sync would become a one way street (events would sync from the web to my phone, but not vice versa).  To remedy this, I would delete the facebook cical, RSET the calendar manually, and re-sync my google calendar.  This would work fine until the next time FB hijacked the calendar.
    Now (in FB 1.7), despite hijacking my calendar, it does not appear to interrupt google sync in either direction.  My google calendar is now named "facebook," but birthdays do not sync to my google calendar.  It is very odd indeed and worries me that this convoluted setup is going to mess up my online google calendar at some point.
    Unchecking the calendar option in the facebook app should prevent it from creating a cical entry. Period.  This is very frustrating and discouraging to see RIM update this app from 1.5 to 1.6 to 1.7 without fixing this obnoxious issue.
    Has anyone else been able to find a solution to this problem?

    Had the same problem here plus the same event kept getting duplicated 20 to 30 times per day.
    I tried all of the solutions that people suggested:
    removed facebook cical
    set default email to another email address
    battery pull
    none of that worked; there was still a "default" email with all of the replicated events.
    Then I stumbled upon a Blackberry tip to move all events into one email account.  So, I moved everything into my GMAIL account, and the "default" email disappeared.  Apparently, if a calendar account is deleted without deleting the events (as was the case with Facebook) the rogue events stay in a "default" calendar.
    I then used Blackberry desktop manager to create a sync to MS Outlook.  I opened Outlook and did a search for the replicated events (by name).  494 replicated events were found, so I selected all of them and deleted them.  I then went back to Blackberry Desktop Manager, re-synced, was prompted to remove the events and WHAM, problem solved.
    Make sure that you uncheck he calendar feature in the Facebook for Blackberry App options.
    I hope that this helps others!

  • Adobe Premiere Pro Issues with Maverick

    Hello Apple friends, photographers, and video editors
    Since I installed Maverick, I have the following issues with Adobe Premiere Pro CS6:
    Why in **** did I update before waiting 6 months...
    - browser window flashes on then disapears when importing new files.
    - browser window sometimes shows all items gryed out when importing files.
    - cannot "Link Media" by example multiple TIFF and one EDL file for subtitles. 1st time menu quickly appears then disapears, then all is greyed out.
    I have a mid 2012 Macbook PRo Retina with SSD @ 50% capacity. All else is extremely fast.
    All my Adobe Master Collection CS6 is up to date.

    Suggest you post on the Adobe forums since it's their software you're having issues with.

  • Are there any issues with Maverick and Canon Pro10 printers

    Are there any issues with Canon Pro10 printers, Dymo 450 LaserWriter and Epson SX400 with the new Maverick?

    Try searching these forums and "Googleing" those devices on the web.....
    Barry

  • USB drive issues with Maverick

    Good day Apple friends,
    Since I installed Maverick I have numerous issues with my Macbook Pro-Retina mid 2012.
    When I connect my usual USB drives they don't react the first time. I always have to deconnect and immediately reconnect to make it work.
    It is not a question of delay, it is a question of 1st or 2nd time. I basically go: connect, disconnect, reconnect and voilà!
    It happens with many 2-4-8 GB USB sticks which were fine before Maverick. It does NOT happen with SD cards though.
    Why?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for