Messages Notifications working on Macbook but not iMac

So I update to Mavericks two days ago and everything is working great except for Messages. Now on my macbook, Messages works completely fine. I get a Notification when I get a new text from iMessage on my iOS and the syncing is great. But the problem I have is that on my iMac at work, Im not able to receive notifications for Messages. The syncing with my iOS is completely fine but I don't receive any Notificaitons. All of the settings are completely the same on both computers. And I've tried rebooting my phone as well.
Any suggestions?

HI,
In Applications/Utilities open the Activity Monitor
Find the Notification item and highlight it.
Now use the quit option top left and confirm Force Quit.
10:17 pm      Saturday; October 26, 2013
  iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
 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

Similar Messages

  • Pdf docs will load on MacBook but not iMac

    I have an iMac and a Macbook Air. Both bought in the past three years.  I am running a proprietary back end database which uses a browser as a front end and is Java dependant..  Both have current versions of OS Mavericks, Java, safari and mozilla.  The database contains pdf docs that are displayed with the standard pdf icon.  When I click on the icon in my MacBook, they load into Word or Adobe on a separate page.  When I click on the icons in my iMac they do not load.  Does anyone have and ideas?

    Hi.  Thanks for the quick reply.  I realized I was not clear.  The docs are resumes.  If they are Word docs, they open in Word.  If they are pdf, they open in Adobe Acrobat Pro.  These open fine on my MacBook Pro, but not the iMac.  When I try opening them on the iMac, I get a Java error message.  Any ideas?

  • PL/SQL AQ notification works in XE but not in our Enterprise Edition

    Hello,
    I am trying to get a Queue up and working and have ran through several examples, but I cannot get the Notify to work in our development environment but it works just fine in my local XE instance.
    Below is the code that WORKS in XE but does not call the procedure in the Enterprise Edition of Oracle:\
    Please note I may manually DBMS_AQ.DEQUEUE the queued item -- that works just fine, but the intent is the have it notify the procedure (this is still hashing out this technology so keep that in mind during critiquing).
    What is different between XE and Enterprise Edition in these regards or what is it I should check?
    (I got the job_queue_processes increased as noted in the below)
    GRANT EXECUTE ON dbms_aq TO aq;
    GRANT EXECUTE ON dbms_aqadm TO aq;
    GRANT CONNECT, RESOURCE, aq_administrator_role TO aq;
    begin
      dbms_aqadm.grant_system_privilege('ENQUEUE_ANY','aq',FALSE);
      dbms_aqadm.grant_system_privilege('DEQUEUE_ANY','aq',FALSE);
      commit;
    end;
    drop procedure demo_queue_callback_procedure;
    BEGIN
            DBMS_AQADM.STop_QUEUE ( queue_name => 'aq.streams_queue_1' );
            DBMS_AQADM.DROP_QUEUE ( queue_name => 'aq.streams_queue_1' );
            DBMS_AQADM.DROP_QUEUE_TABLE ( queue_table => 'aq.streams_queue_1_table'
                                         ,FORCE       =>TRUE );
    END;
    BEGIN
            DBMS_AQADM.CREATE_QUEUE_TABLE (
                      queue_table        => 'aq.streams_queue_1_table'
                     ,queue_payload_type => 'aq.APP_INFO'
                     ,multiple_consumers => TRUE );
           DBMS_AQADM.CREATE_QUEUE (
              queue_name  => 'aq.streams_queue_1',
              queue_table => 'aq.streams_queue_1_table'
           DBMS_AQADM.START_QUEUE (
             queue_name => 'aq.streams_queue_1'
       END;
    CREATE TABLE aq.queue_message_table
       ( message VARCHAR2(4000)  , ins_date date default sysdate);
    CREATE or replace PROCEDURE aq.demo_queue_callback_procedure(
                         context  RAW,
                         reginfo  SYS.AQ$_REG_INFO,
                         descr    SYS.AQ$_DESCRIPTOR,
                         payload  RAW,
                         payloadl NUMBER
                         ) AS
          r_dequeue_options    DBMS_AQ.DEQUEUE_OPTIONS_T;
          r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
          v_message_handle     RAW(16);
          o_payload            aq.APP_INFO;
       BEGIN
          r_dequeue_options.msgid := descr.msg_id;
          r_dequeue_options.consumer_name := descr.consumer_name;
          DBMS_AQ.DEQUEUE(
             queue_name         => descr.queue_name,
             dequeue_options    => r_dequeue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
          INSERT INTO aq.queue_message_table ( message )
          VALUES ( '[' || o_payload.parameter || ';' || o_payload.value || ';' || to_char(o_payload.dte,'ddMONyy:hh:mi:ss') ||']' );
          COMMIT;
       END;
    BEGIN
           DBMS_AQADM.ADD_SUBSCRIBER (
              queue_name => 'aq.streams_queue_1',
              subscriber => SYS.AQ$_AGENT(
                               'aq_queue_subscriber',
                               NULL,
                               NULL )
           DBMS_AQ.REGISTER (
              SYS.AQ$_REG_INFO_LIST(
                 SYS.AQ$_REG_INFO(
                    'streams_queue_1:aq_queue_subscriber',
                    DBMS_AQ.NAMESPACE_AQ,
                    'plsql://aq.demo_queue_callback_procedure',
                    HEXTORAW('FF')
              1
       END;
    DECLARE
           r_enqueue_options    DBMS_AQ.ENQUEUE_OPTIONS_T;
           r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
           v_message_handle     RAW(16);
           o_payload            aq.app_info;
           vreclst DBMS_AQ.AQ$_RECIPIENT_LIST_T;
        BEGIN
          o_payload := aq.app_info('msg4',4,sysdate);
         --vreclst(1):= sys.aq$_agent('ANYONE','', null);
          --r_message_properties.recipient_list:= vreclst;
          DBMS_AQ.ENQUEUE(
             queue_name         => 'aq.streams_queue_1',
             enqueue_options    => r_enqueue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
         COMMIT;
       END;
    select * from aq.queue_message_table   ;
    SELECT *
        FROM   aq.aq$streams_queue_1_table;
    set serveroutput on   
        DECLARE
           r_dequeue_options    DBMS_AQ.DEQUEUE_OPTIONS_T;
           r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
           v_message_handle     RAW(16);
           o_payload            aq.app_info;
        BEGIN
          --r_dequeue_options.dequeue_mode := DBMS_AQ.BROWSE;
              r_dequeue_options.consumer_name := 'aq_QUEUE_SUBSCRIBER';
          DBMS_AQ.DEQUEUE(
             queue_name         => 'aq.streams_queue_1',
             dequeue_options    => r_dequeue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
          DBMS_OUTPUT.PUT_LINE(
             '*** message is [' || o_payload.parameter || ';' || o_payload.value || '] ***'
       commit;
       END;
        select * from dba_queue_schedules ;
        select * from dba_objects;
    SELECT *
       FROM v$parameter
      WHERE name = 'aq_tm_processes'
         OR name = 'job_queue_processes';
    job_queue_processes = 10;
    aq_tm_processes = 0;
    SELECT *
       FROM v$parameter
      WHERE name = 'aq_tm_processes'
         OR name = 'job_queue_processes';
    in XE
    aq_tm_processes     => 0
    job_queue_processes => 10
    Ora Type:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production    
    PL/SQL Release 11.2.0.1.0 - Production                                          
    CORE     11.2.0.1.0     Production                                                        
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.1.0 - Production               
    NLSRTL Version 11.2.0.1.0 - Production  
    in XE
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production             
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production                                                        
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production                         
    NLSRTL Version 11.2.0.2.0 - Production
    the
    job_queue_processes => 4

    Got it working,
    in running this
    SELECT owner, queue_name, queue_table, consumer_name
    FROM dba_queue_subscribersI saw that there was an initial queue consumer that was overlapping, I dropped the initial queue and recreated all and it now works.

  • Push notifications work after restore, but not after reboot - ios5 iPhone 4

    Push notifications work after I restore my iPhone (confirmed by ipusher and facebook), but from the first time that I turn off/reboot the phone push notifications stop working!? I have restored several times, as the same thing happens every time.
    I have an iPhone 4g 32gb running ios5.0.1.

    If it's all push notifications, restore the device as "new" and see if the problem goes away.
    If it's push notifications for specifics apps, contact the developer of those apps.

  • IPod works with Windows but not iMac

    I have an 80GB iPod Classic that works perfect on my computer running Windows Vista and iTunes 7. I have only ever used it with iTunes.
    My iPod's format is FAT32 (Windows). And it's running software Version 1.1.2 and disk use is enabled.
    When i try and plug it into an iMac (iMac G5) running OS X 10.3.9 it doesn't work. It doesn't come up as an external drive so I can't access it as an external disk and it fails to work in iTunes.
    I have upgraded the Mac to the latest version of iTunes but this still doesn't solve the problem. I tunes gives me the following error "iTunes has detected an iPod that appears to be corrupted...". This is not the case, my iPod is not corrupted.
    How can i get my iPod to work on the Mac?

    I had the same problem. Your ipod is formated i believe for windows so it wont come up on your mac. to format it you need to plug it into the mac go onto itunes and if you click on the summary page of ipod the only options you will be able to edit on the ipod from the mac are restore or (i dont know exactly) but there should be a button explaining that you need to restore your ipod and format it for mac.
    to do this you need to click the button on the summary page on itunes (if you click on your 80G ipod on the left side) but formating for mac deletes everything off the ipod. it wont be able to transfer music etc if you format for mac on your windows but it will now work on the mac.
    i hope u understood because i didnt really make it very clear. but if you dont understand just ask and ill be happy to explain it for you.
    Alex
    Message was edited by: Alexander Richardson

  • HT204387 BOSE Bluetooth wireless headphones work with iPhone but not iMac - Profile issue I assume - but why not!!!!

    I have a great pair of BOSE wirless headphones that connect faultlessy to my iPhone.  I'm very dissappointed however to find that I cannot use the same headphonse on my iMac or my MacBook Air.  I assume it's a bluetooth profile issue but in product utility terms it makes no sense.  Is anyone aware of a way of circumventing this resytiction (e.g. third-party product, mac setting,...etc)?

    Yes. This has to be the 8.xx iOS.
    I have experienced this since purchasing the 6+. Now, I attempting to pair the phone to Sync in my Ford F150, it
    can't find the phone. I go through any number of attempts: rebooting the phone, finding a bluetooth device on Sync, etc.
    Most of the time it shows a "cannot find bluetooth device". Or the Sync shows a pairing number to type in the phone in order
    to pair, but the iPhone doesn't see Sync, so nothing can be done.
    Sometimes, and I mean only sometime, the device is paired by itself. (On sync, "choose input: usb or bluetooth" and trying this
    several times, Lo and Behold.....wait for it......the iPhone 6+ connects!
    This is not what I had, an iPhone 4S, that one pairing, and always paired. (truck off, crank and instantly paired). The old days!
    I have check Ford to look for an update. I have the latest from 2012. The final one for my truck model year.
    This version of iOS needs works and must be updated again.
    I don't know who to contact at Apple but the mods here don't say how to do that.  It another Apple waiting and see.
    If I find a solution, I will post it immediately. I hope you will post as well. Thanks for reading.
    M.

  • Reminders show on calendar MacBook but not iMac?

    Hi everyone,
    I've recently installed Mountain Lion (version 10.8.3) on my late 2009 iMac and miss the to-do list that showed up on the sidebar of iCal in Snow Leopard.
    I now see that there is a separate Reminders app but nothing from my calendar shows up in it.
    When I look at Calendar on my late 2011 MacBook Pro, the reminders show up on the left hand side of it, why doesnt that also happen on my iMac?
    MYOB uses Calendar to add bill due dates but its often more difficult to view whats due when and in what order, well at least a little more difficult than when I could see it in a ordered list and check them off as completed in Snow Leopard.
    I know this is probably one of the more trivial questions but its really annoying me!!
    Any help you can offer would be appreciated. I just dont understand why the layout isnt the same across the iMacs and MacBooks?
    Thanks
    Kristy
    n.b. I am using an icloud calendar, not an On My Mac calendar.

    Thanks, yes I have iCloud set up.
    My question is why do reminders (or to-do's) not show on my iMac calendar they do on my MacBook Pro?
    I do not need to sync from the iMac to any other devices. I just want the Calendar and Reminders app on my iMac to sync, and would really like to learn if there is a way to have reminders show up on the calendar itself.
    I just checked my MacBook Pro version and its running Lion which still uses iCal. Possibly thats the reason they are different.
    I will admit I'll be disappointed if this is just something thats not included with Mountain Lion.

  • Why is my Apple id working on my MacBook but not my iPad?

    Why is my Apple id working on my MacBook but not my iPad? I can log in o.k. on my MacBook, but using the same user name and password on my iPad, I just get the Incorrect Apple ID or Password message.
    on my iPad, I have used the Forgotten Apple ID or Password link and reset the password. Even after I get the successfully reset password message it still gives me the Incorrect Apple ID or Password message!
    In desperation I have restored the iPad to Factory settings. It appears to be running OS 7. something.
    My Macbook is running 10.8.5.
    But the same problme persists.
    Please help

    I am having the same problem. Works fine on the website but telling me it's incorrect on my iPhone

  • When i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    when i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    Unfortunately, the recording & movie industry does not respect the rights of the people who make them money, and thus you can only use the paid-for content in ways they see fit. Even if I lived in a bunker where no one else could possibly see the movie I paid for, therefor I'm not 'sharing it illegally', I would still not be allowed in a blue moon to copy that movie to DVD for TV viewing. Someone will tell you to get an AppleTV. How about Apple give us one for free? Until this changes, people wanting to use their content in multiple locations will continue to download music & movies via torrents, legally or illegally.

  • HT4528 Why won't my apple id and password work on my iPhone?  It is working on my Macbook but not the iPhone?

    Why won't my apple id and password work on my iPhone?  It is working on my Macbook but not the iPhone?

    there might be something different on the mac you can try appleid.apple.com and reset your password i would also check the mac to see which appleid is signed you may have multiple apple ids and not know

  • UTube video sound works on iPhone5S but not on Macbook Pro?

    UTube videos from a variety of sources works on iPhone5S but not on Macbook Pro? Thinking it has to do with recommended Flash settings on the MAC. Is there an app to resolve this inoperability on a MAC without having to make Flash active?

    What format is the video? Is it .wmv? Do the DVD's have any type of protection or encryption? This information will help in finding a solution.

  • After uninstalling and downloading the latest Abobe Flash player, I can no lnger play youtube videos. I get the message "blocked plug-in". It works in Firefox, but not Safari.

    After uninstalling and downloading the latest Abobe Flash player, I can no lnger play youtube videos. I get the message "blocked plug-in". It works in Firefox, but not Safari?

    Frostbitblue,
    in Safari’s Preferences, select its Security tab, and make sure that its “Internet plug-ins: Allow Plug-ins” checkbox is checked.

  • How do I send group emails from my iPad? They work fine from my MacBook but not the iPad.

    How do I send group emails from an iPad? They work fine on my MacBook but not my iPad.

    You need a third party app to do that. Look at Mail Shot or Group Email in the app store. You cannot do it with the built in mail app and the contacts app in iOS 5 without a third party app.

  • Wifi signal working on my MacBook, but not on my IPhones.  Why?

    I've been having trouble with my network signal strength for the last few weeks since my service started.   My ISP is DirecTV. 
    Today, my service went down completely and after I called them, it came back about an hour later.  I now have Internet service on my MacBook, but not on any of my mobile devices, including IPhones.  They are unable to see the base station. 
    I've rebooted many times.  Occassionally, it will see my network signal, but then it drops off.  I have a Motorola SB5101 Modem.  One thing I do know from calling DirecTV so often is that the tech on the phone today did change my IP address.  Does that have anything to do with my problem? 
    My fear is that if I call them again, I will once again be without any Internet access, so I'm waiting patiently on a Thursday appointment, but if I can do anything to fix it now, I'd like to.  Thank you.

    there might be something different on the mac you can try appleid.apple.com and reset your password i would also check the mac to see which appleid is signed you may have multiple apple ids and not know

  • Ichat works with wireless, but not ethernet

    Just moved into new office and bought new iMac. I can get internet with ethernet or wireless, but iChat works only over wireless. This is true with my intel Macbook as well. Is this a port or firewall problem, and if so, why would wireless work, but not ethernet?
    Core2 Duo 24", 1 g ram   Mac OS X (10.4.9)  

    Who is supplying the wireless internet connection?
    Who is supplying the wired internet connection? If
    it's two different entities, the IT Secret Police may
    be blocking ports on the wired side.
    TimeWarner comes in from the outside, but a private contractor is involved in the setup of the wireless which is connected to the TW modem. But if the wireless goes into the TW cable, why does it work as wireless, but not directly plugged in? It is as if converting the signal to wireless cures the problem.
    Core2 Duo 24", 1 g ram   Mac OS X (10.4.9)  
    Core2 Duo 24", 1 g ram   Mac OS X (10.4.9)  
    Core2 Duo 24", 1 g ram   Mac OS X (10.4.9)  

Maybe you are looking for

  • Printing Report W/o Form Feed

    I want to stop the printer as soon as my report(6x) finished using dot matrix (i.e Epson LX 300). null

  • SAX Parser: ArrayIndexOutOfBoundsException

    Attachments: "1|type=text/xml|desc=test xml file|16821|file=test.xml|" I am using your Java XML parser v2.0.0.2. With some XML files the SAX parser raises an ArrayIndexOutOfBoundsException: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsEx

  • ABAP Webdynpro integration with GP

    Hi, While using ABAP Webdynpro as a callable object in GP, I am facing an issue where it is only possible to pass the input parameter to the Webdynpro application from GP. 1. Is there a way to pass an output parameter from Webdynpro back to GP? 2. Is

  • Thousands separator when displaying year in dashboard prompts

    In our reports, when we include just the year field in prompts, they display with a thousands separator (e.g. 2,012 for the year 2012) Does anybody have any ideas on how to fix this. We are on 10.1.3.4 but any hint would be helpful.

  • How to use 'help view'uFF1FHELP

    Dear guys:   I want to use 'help view' to connect tables with 'OUTER JOIN'. For example:With primary table 'SPFLI' and secondary 'SCARR',with each has different airline code of 10 and 18.  I want show all the 18 airlines even if they do not have any