Old Reminders in Notification Centre That Don't Exist in Reminders

In the Notification Centre on my Mac I have 2 Reminders from 61 days ago listed, but I don't think they actually exist - if I click on them in the Notification Centre the Reminder application opens but on today, it doesn't go the the reminder I clicked on, and if I search in Reminders I can't find the entries either, neither can I if I go back 61 days in the application, they just don't exist.
I've turned notifications for Reminder off and on, it doesn't make a difference; obviously this is a corruption in a cache or file somewhere, does anyone know where the Notification information is held and how I can get rid of these two incorrent entries?
     David
Mac OS X 10.8.4

I found it....
Kill the /System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/Notification Center process and deleted the .db file in ~/Library/Application Support/NotificationCenter - the NotificationCenter process automatically restarts (so be quick on the delete of the .db file!), rebuild the database and it's clean now, the two old Reminder entries have gone.

Similar Messages

  • How do I show a count for rows that don't exist?

    Hi, I'm trying to count the number of records grouped by rank(B,C,R),month,and year. Basically, anytime a part fails testing a record is entered which records the failure Rank and occurrence date. A record is only inserted if a part failed for specific rank. So not all 3 ranks will have entries. I'm able to count all ranks by month,year that do exist. But how do I get values of 0 for the ranks that don't exist? I just created a table qa_rank that has just one column rank with 3 records(b,c,r). but its not being used as of now. rank is just a column in qa_occ record.Here is my query.
    select to_char(occdate,'YY') as yr, to_char(occdate,'MM') as mn,
    rank, count(occdate)
    from qa_occ
    where q.occdate between '1-Apr-2005'and '31-Mar-2006'
    and q.supplier = '11107'
    group by to_char(q.occdate,'YY'),to_char(q.occdate,'MM'),q.rank
    order by to_char(q.occdate,'YY'),to_char(q.occdate,'MM')
    which returns this
    YY MM RANK COUNT(OCCDATE)
    05 09 C 2
    05 10 C 2
    05 11 C 1
    05 11 R 1
    06 01 C 3
    06 02 C 1
    06 03 B 1
    06 03 C 2
    I need it to return C,B,R for everymonth. If no records exist then the count for the month,rank should be 0. Any ideas? Thanks.

    something like:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select * from qa_occ;
    OCCDATE   PART            R INDEXPOINTS
    15-SEP-05 B3661-RYPX-A000 C           4
    25-SEP-05 B3661-RYP-A000  C           4
    11-OCT-05                 C           7
    20-OCT-05 B3661-RYP-A000  C           4
    11-NOV-05                 C           4
    18-NOV-05 B3661-RYPX-A000 R           0
    11-JAN-06 B3661-RYP-A000  C           4
    25-JAN-06 3511-RNA0-0111  C           4
    27-JAN-06 3511-RNA0-0111  C           4
    15-FEB-06 3511-RNA0-0111  C           4
    07-MAR-06 B3661-RYP-A000  C           4
    14-MAR-06 B3661-RYP-A000  C           4
    15-MAR-06 3511-RNA0-0111  B          13
    13 rows selected.
    assuming that there are only three ranks available B, C,and R we considered this as a lookup values. now in the query below we incorporate an inline view for the lookup values:
    SQL> with qa_occ as
      2  (select to_date('09/15/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'C' rank, 4 indexpoints from dual
      3   union all
      4   select to_date('09/25/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      5   union all
      6   select to_date('10/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 7 indexpoints from dual
      7   union all
      8   select to_date('10/20/2005','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
      9   union all
    10   select to_date('11/11/2005','mm/dd/yyyy') occdate, null part, 'C' rank, 4 indexpoints from dual
    11   union all
    12   select to_date('11/18/2005','mm/dd/yyyy') occdate, 'B3661-RYPX-A000' part, 'R' rank, 0 indexpoints from dual
    13   union all
    14   select to_date('01/11/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    15   union all
    16   select to_date('01/25/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    17   union all
    18   select to_date('01/27/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    19   union all
    20   select to_date('02/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'C' rank, 4 indexpoints from dual
    21   union all
    22   select to_date('03/07/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    23   union all
    24   select to_date('03/14/2006','mm/dd/yyyy') occdate, 'B3661-RYP-A000' part, 'C' rank, 4 indexpoints from dual
    25   union all
    26   select to_date('03/15/2006','mm/dd/yyyy') occdate, '3511-RNA0-0111' part, 'B' rank, 13 indexpoints from dual)
    27  select qa.yr, qa.mn,
    28         decode(qa.rank,lk.rank,qa.rank,lk.rank) rank,
    29         sum(decode(qa.rank,lk.rank,qa.cnt,0)) cnt
    30    from (select to_char(qo.occdate,'YY') as yr,
    31                 to_char(qo.occdate,'MM') as mn,
    32                 qo.rank,
    33                 count(qo.occdate) cnt
    34            from qa_occ qo
    35          group by to_char(qo.occdate,'YY'),
    36                   to_char(qo.occdate,'MM'),
    37                   qo.rank) qa,
    38         (select 'B' rank from dual
    39          union all
    40          select 'C' rank from dual
    41          union all
    42          select 'R' rank from dual) lk
    43  group by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank)
    44  order by qa.yr, qa.mn, decode(qa.rank,lk.rank,qa.rank,lk.rank);
    YR MN R        CNT
    05 09 B          0
    05 09 C          2
    05 09 R          0
    05 10 B          0
    05 10 C          2
    05 10 R          0
    05 11 B          0
    05 11 C          1
    05 11 R          1
    06 01 B          0
    06 01 C          3
    06 01 R          0
    06 02 B          0
    06 02 C          1
    06 02 R          0
    06 03 B          1
    06 03 C          2
    06 03 R          0
    18 rows selected.
    SQL>

  • Movies that don't exist

    front row looks in the movies folder and lists the contents, right?
    well it's showing titles in that are not in and have never been
    in my movies folder.
    nothing happens when selecting these (probably because they don't exist).
    of course i can't delete since they do not appear in the finder or
    spotlight search.
    i tried deleting everything in the movies folder, of course all
    that's left in front row are the movies that don't exist.
    any suggestions?
    Message was edited by: avinbc

    Are your movies, even though they're gone from the hard drive, listed in iTunes somewhere? That would make them appear in Front Row even under the Videos section.
    The Front Row preference file does not remember anything except which module was the last one you used.
    -Doug

  • Get rowns that don't exist in any of the tables.

    Hi,
    I need to implement some views to compare systems.
    This views will compare tables with the same structure and I want to extract the rows that don’t exist in any of the sides.
    I need to implement some views to compare only two tables, others to compare 3 tables and one to compare 5 tables and another to compare 10 tables!
    Each table can contains from a few rows up to 10 million rows (that was the biggest count I found for this tables).
    My test scenario:
    CREATE TABLE TEST_TABLE
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE2
    (COL1 NUMBER ,
    COL2 CHAR(25));
    CREATE TABLE TEST_TABLE3
    (COL1 NUMBER ,
    COL2 CHAR(25));
    insert into TEST_TABLE (COL1,COL2) values (1,'2');
    insert into TEST_TABLE (COL1,COL2) values (11,'t1');
    insert into TEST_TABLE2 (COL1,COL2)  values (1,'2');
    insert into TEST_TABLE2 (COL1,COL2) values (22,'t2');
    insert into TEST_TABLE3 (COL1,COL2) values (1,'2');
    insert into TEST_TABLE3 (COL1,COL2) values (33,'t3');To find the differences between two tables I implemented the following:
    select * from
    (select * from TEST_TABLE
    minus
    select * from TEST_TABLE2
    union all
    (select * from TEST_TABLE2
    minus
    select * from TEST_TABLE
    Result:
    COL1 COL2
    11     t1                      
    22     t2                       For the 3 tables comparison The result should be:
    Result:
    COL1 COL2
    11     t1                      
    22     t2                      
    33     t3                       For the other ones I can implement the same way, but for sure this is not the prettiest and most performing solution!
    How can I achieve the result I intent with the most performance?
    Thanks,
    Ricardo Tomás

    You didn't say if you allow duplicates in your tables, so i assumed you didn't.
    If a single table could have multiple occurrences of a given col1, col2 combination you would need to distinct the col1,col2 list from each table before doing the union all.
    ME_XE?  select
      2     col1, col2
      3  from
      4  (
      5     select col1, col2       from test_table
      6             union all
      7     select col1, col2       from test_table2
      8             union all
      9     select col1, col2       from test_table3
    10  )
    11  group by
    12     col1, col2
    13  having count(*) = 1;
                  COL1 COL2
                    33 t3
                    22 t2
                    11 t1
    3 rows selected.
    Elapsed: 00:00:00.01
    ME_XE?

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • Deauthorizing computers that don't exist

    How am I supposed to deauthorize computers that don't exist? Every time I've had to reinstall Windows, iTunes eats up another "authorization". Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?

    Every time I've had to reinstall Windows, iTunes eats up another "authorization".
    Your supposed to deathorize BEFORE a re-install. Not after. iTunes makes it very easy to do that.
    Now all 5 authorizations are taken, and my iTunes purchases are useless. I only have 1 computer, Apple, so make this easier for Windows users, will you?
    Apple makes it easy enough to de-authorize your computer. You can even do a de-authorize all once a year. Log on your account and you should be able to not only view your authorizations, but have an option to de-authorize all of them.

  • Ive recently updated my new email address with my apple ID but now my iphone and ipad dont recognise these and wont allow me to edit or change them without signing in with my old details to an account that no longer exists, can this be fixed? thanks

    ive recently updated my apple ID with my new email address but now my iphone and ipad dont recognise these and wont allow me to edit or change them without signing in with my old details to an account that no longer exists, can this be fixed? thanks

    Go to setting on the devices and change the information
    Settings
    iTunes and App Store
    Account
    (Change account)
    Also settings
    Mail, contacts, calendars
    Account
    (Change account)
    Same for everything else that uses your email address.  Facebook, Twitter, iCloud, on and on.

  • Import photos that don't exist...

    When I import pictures into iPhoto from an external hard drive, there are mystery pictures that are showing up. These are pictures that used to exist on the HD but that I deleted from there.
    I deleted my entire iPhoto library and emptied the trash within iPhoto. I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    I tried to re-import the pictures from the external HD to iPhoto, but AGAIN, the mystery pictures are there. I've checked the folder in the HD that they are showing up in. But, they are not there. I've even done a search on my computer, and the files don't exist.
    Please help me figure out why this is happening. I just don't know how to get rid of these pictures. I want them gone...completely!!!
    Thank you!!!

    I then went to the "show package contents" of my iPhoto library on my computer's HD and deleted everything.
    Never make changes to the structure or content of the iPhoto library using the finder
    make sure you have the photos you want safe and drag the baad iPhoto library to the trash and empty it and then depress the option key and launch iPhoto and create anew library - now start using this correctly set up library
    LN

  • 'Raw' Data XMP view shows internal properties that don't exist in the data

    In FileInfo view for an image, if I switch to the 'Raw Data' tab, it shows photoshop:ColorMode and photoshop:ICCProfile. However, when I check the actual XMP data of the image e.g. using exiftool or a text editor, these properties do not exist in the XMP data.
    According to this thread: http://forums.adobe.com/message/5057589 these are both internal properties to PS / Bridge, which explains why they don't exist in the XMP. But why are they shown in the 'Raw' data view for the XMP then? Showing them here is just confusing as it makes it seem like they should exist in the XMP data.
    I can't really see any point in including nonexistent tags in the Raw Data view. But if it is deemed necessary, how about highlighting them a different color, such as using a grey font instead of black? At least it would indicate that they were different to the real data.
    P.S. This is with Bridge CS5, possibly the issue has been fixed in CS6?

    Hi Paul
    The issue is that the Bridge File Info panel is showing these tags in the XMP for the image, but if you check the XMP of the file, those tags aren't there.
    As a side issue, Bridge File Info panel is also showing the XMP in a different structure to that which exists in the actual file. There are two issues here really
    ACR is not writing the photoshop:ColorMode tag (or the photoshop:ICCProfile tag) to the JPEG (I checked the .xmp sidecar file for the RAW file and the photoshop:ColorMode tag does exist in there, but does not exist in the JPEG file converted through ACR).
    Bridge's File Info panel is showing data in the XMP that is not actually there.
    Although I would like the ColorMode tag added to the image, I don't think point 1 is a real issue, since the ICC profile is embedded okay. Point 2 does appear to be a bug (or at least it is confusing if it is intended behaviour).

  • Issues exist in release build that don't exist in debug build

    I've been working on a Flex 4.1 project and have recently noticed an issue that does not exist in the debug build.  Then when you export a release build and run it the issue appears.  This is the only change that's made that breaks it.  To me this seems to be a bug in the player, SDK, or compiler that I might need to post, but I figured I'd submit it here in case I'm missing something.
    Basically it seems to be an issue with objects in an ArrayCollection being instantiated as the correct class type before being added.
    When in debug mode, if you set a breakpoint to view the objects in the ArrayCollection you will see them appropriately as their Strongly Typed class.  However, when the release mode build is run it will throw an RTE on that same line indicating that the ArrayCollection members are ObjectProxy and they can't be cast into their Strongly Typed class.
    Here's the RTE that happens and right now I just need to know if I'm missing something, or if this looks like a bug, and to which bugbase it should be posted (Flash Player, Flex SDK, Flex Compiler, etc.)
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy@28250141 to
    <confidential package path>.PlayerPageSummary.
        at <confidential package path>.service::InitializeStorefrontServiceResponseCommand/execute()
        at org.robotlegs.base::CommandMap/execute()
        at org.robotlegs.base::CommandMap/routeEventToCommand()
        at MethodInfo-1674()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at <confidential package path>::<confidential acronym>ModuleActor/dispatchLocal()
        at <confidential package path>.live::InitializeStorefrontService/result()
        at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()
        at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()
        at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
        at mx.rpc::Responder/result()
        at mx.rpc::AsyncRequest/acknowledge()
        at DirectHTTPMessageResponder/completeHandler()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()

    Alex,
    Thanks for your help and here's an update on this from me.  We did try out your suggestion to see if "PlayerPageSummary can be retrieved via getClassAlias".  I'm not the one that did the testing, but my teammate who did, said that the class being registered was not the issue.
    While he was working on that I further investigated our ANT builder and configuration to see what might have been different between ANT building non-debug SWF and Flash Builder building non-debug SWF.  Turns out that my teammate had added some [ArrayElementType] metadata that I was not aware of.  Once I realized that, I added it as metadata to be kept in my flex-config.xml which ended up solving the debug vs. release mode issues.
    Afterwards, I double-checked the livedocs and also did some Googling.  From the above it appears that debug SWF keep all metadata without you needing to explicitly tell it to. On the other hand, outside of a handful of metadata tag such as [Bindable] release builds neeed to be told what to keep.
    Does this sound right?
    Also, do you know off the top of your head if this is documented by Adobe anywhere and what the link is?  I had a real tough time finding anything mentioning how debug SWF retain all metadata.
    Thanks again for your help!

  • Time Machine only keeps two days backup, displays old backups that don't exist. Occurs on two separate HDD's

    I have a 15" 2010 MBP C2D-2.53 in completely original form except it is running OSX 10.8. Applecare just ran out so that's not an option, FYI. Lately I went to fetch an old file from TM because the current file was corrupt and I noticed that TM was only backing up for the past couple of recent days. Oddly enough, it also displayed a couple of backups dated from 2010, even though the external HDD I'm using was purchased 2 months ago and the files displayed in the "2010" backup did not exist at that time so it's an impossibility. The backup disc is a toshiba canvio external 320gb USB.
    I thought that was odd so I zeroed and reformatted that disc using disc utility. I made it the TM disc again, did the usual backup without error and waited a couple of days. Sure enough, when I checked it had continued the trend of displaying the impossible 2010-dated backup and was still only backing up the past couple of days' material correctly. I decided that this was all getting a bit silly, so I plugged an old external WD USB hard drive, formatted it and made it my second time machine backup disc. Waited a couple of days, accessed it, saw the same exact thing as with the other external drive.
    I'm perplexed, however based on these rudimentary tests I'm guessing the culprit lies with the machine rather than the external hard drives. These facts may be unrelated, but I also notice that when I go to eject the toshiba external drive, it says something like "there is more than one partition, would you like to eject one or all" and the machine also had some work done on it by Apple recently. Specifically, a new logic board, airport card and complete erase/install where I reinstalled data successfully through migration assistant. The work was done due to kernel panics at boot. Thankfully for now I've also got CCC cloning the drive, but I do require the long-term snapshots that TM takes.
    Any help would be greatly appreciated, and I'm willing to do some digging to fix this issue.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • How can I delete old (non-active) email accounts that don't show in the Accounts Preferences pane?

    Since I (reluctantly) abandoned MobileMe and switched to iCloud, when I use Mail Connection Doctor because a problem is indicated with one or more of my email acocunts, it shows both iCloud IMAP and Me.com SMTP accounts. The iCloud account is fine but the SMTP acount has a red button against it.
    So Connection Doctor shows the old SMTP account always failing to connect (of course - as it's been abandoned). However, this account does not show up in the Accounts Preferences pane so I am not able to delete it. This also happens with another account which I deleted in the Preferences pane some time ago.
    How can I stop these phantom accounts appearing in Connection Doctor? It's very irritating to constantly have faults indicated which apply to abandoned accounts.
    Thanks people!

    Go to your iCloud account in Preferences>Accounts. Set the 'Outgoing mail server (SMTP)' drop-down menu to 'Edit SMTP server list'. Then:
    Set the server name as shown here. Then click the Advanced tab and check the settings.
    If you are still having problems, you could start the setup again from scratch. Assuming that your signature is correct and you are running Leopard, delete any iCloud or MobileMe accounts in the list and then follow the instructions here:
    Entering iCloud email settings manually in Snow Leopard or Leopard

  • Ghost Jive notifications that don't exist on the forums

    Hi,
    I'm constantly getting Jive notifications to my iPhone. And then when I swipe on one, it opens the correct discussion or blog, as it should. But, there is no response to that discussion/blog on the web.
    Any ideas why this is happening? It's a new thing, in the last week.
    John

    It's happened to me a couple of times over the past week. 
    I think it has to do with moderation: some content received multiple abuse reports and was hidden. Then these abuse reports were rejected and the content put back into circulation, which we know forces it back into the communications stream as unread, forcing a notification on the mobile app.
    Moving content would also have this effect.

  • How do I delete an old CalDAV account from iPhone that no longer exists?

    A few months ago I tried to set up synching between my work calendar (via a CalDAV account) on my work Macbook, my iPhone and my home iMac. I never could get the account to set up in iCal on my iMac but it worked fine on my work Macbook and my iPhone. But we eventually went to using Google Apps, so now I don't need it.
    The problem is that despite having removed the account entirely on my work Macbook's iCal, the calendar remains on my iPhone and keeps notifying me of reminders that had been set up there. When I go into my iPhone's settings, into Mail, Calendars, etc., the calendar is not there anymore (because I removed it when we got rid of using it at work) so I can't delete it.
    I thought maybe somehow it was still hanging around on my home iMac, despite never having been able to set it up to work, but it's not there, either. The only place it exists is when I open iCal on my iPhone, although there's no way for me to delete it and when the notifications pop up I can't edit them, either.
    Am I just out of luck here and stuck with this rogue calendar? When I plug my iPhone into my home iMac, where it's set up to sync, it tells me that my calendars are being synched over the air, not through iTunes. But when I go into system settings on that computer and force it to resync calendars, it doesn't get rid of the old CalDAV account on my phone.
    Any ideas?? I'm stumped.

    If your device is signed into an old ID of yours that is an earlier version of the ID you want to sign in with, do the following:
    If you are using iMessage and FaceTime, make sure you are signed into these services with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless you are using iCloud Photo Library).  When finished go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • How can I sign out from old icloud email on my device? I changed email recently and by mistake restored my new iphone 6 from old back up with email that doesn't exist. Pls help!

    I have changed i cloud email recently, and wanted to set up my new iphone 6 from 2 months old back up. Later I found out that icloud has old email, but it doesn't recognize password to sign out because it is not in i cloud system anymore. Now I cant turn off stupid icloud to reset my new iphone 6  
    How can I change icloud email or reset and erase new phone 6 if it is stuck on an old apple id which doesnt exist?

    The fact that the email address doesn't exist anymore doesn't matter. As far as the Apple ID is concerned, the email address is just a user name. As long as you know the password you used, it should be fine.
    If you don't remember the password, start here:
    https://iforgot.apple.com

Maybe you are looking for

  • Quicktime wont Un-install (error 2330, fatal error etc) any new ideas??

    right, ive tried everything now other than cleaning my whole c; and d; drives totally! i've uninstalled iTunes any any related software, hoping it would help solve this quicktime problem, but no success. Also i have manually taken every Quicktime fil

  • TS1630 I can't hear music through earphones on  my iphone--it plays out loud

    how do I get music to play through headphones on my iphone.  The music plays out loud but not through the headset

  • By passing  Kona for direct firewire capture/control

    Greetings First let me qualify this by saying that it's quite possible I'm missing something very basic in FCP and MAC config and use. I'm not immune to overlooking the obvious or stupid mistakes. So having said that... I'm running a FCP 5 on a MacPr

  • Music in dialog?

    //I have a dialog   code shown below// project .I want to  play music  say //deniz .wmv when dialog //opened and stop music when dialog closed  . how can I achieve this. if  you //show me  the additional codes  I will be very pleased. //best wishes /

  • Organizer causes software (Elements 6.0) to shut down

    I had Photoshop Elements 5.0 and for some reason my organizer quit working. I decided to buy Elements 6.0, and installed it and got the same results. I can edit, but I cannot get into the organizer. I am using Windows Vista. I did uninstall 5.0, unin