By efaden on
Hey everyone. I am using RC5 of civicspace and the events module. I am trying to get remindme to work and I did everything that I should need to do for setup including creating the tables. (Although I modified the tables to use my sites prefix so they are cs_ prefixed). No matter what I don't seem to get notifications. I know cron is running, so I looked at the notifier tables. The table listing which tids I have requested has the list correctly and I see the tids. However the actual list of the events that need notification (remindme_node table) is always empty. So it doesn't seem to work... has anyone gotten this to work? Am I missing something?
-Eric
Comments
Sending to same domain?
This is a longshot, but...
Under certain conditions, I have had problems receiving email sent by my server when the destination email address had the same domain or IP as the host server. So if your notification is going from www.yoursite.com to you@yoursite.com, you might try using a different destination email address.
Figured it out.
So the events was updated so it is able to use flexinodes. The remindme module was not. As such when it gets called via the nodeapi hook it looks to see if the node type was 'event' NOT a flexinode with type 'event'. Which basically means that it doesn't think that it is supposed to remindme. I found a patch someone else used to fix the remindme link not existing on flexinodes and also stuck it into the function called from nodeapi so that it will check for 'events' or event flexinodes. I'll try to post a patch later.
-Eric