Forum Replies Created

Viewing 1 replies (of 1 total)
  • Ok, I figured out the problem. The function you are supposed to insert into your template header, “email_notification_future_send()” calls a function in email_notification.2.3.php which tries to use the WordPress global $table_prefix to access the wp_email_list_future table. However, $table_prefix includes your blog’s prefix (if you installed the blog with one) so my table (created by the email notifier) was wp_email_list_future but the $table_prefix directive was wp_myblog_ so it tries to access the table wp_myblog_email_list_future which does not exist. To fix this, simply rename the wp_email_list_future table to wp_YOURBLOGPREFIX_email_list_future and it should work great. (If you’re not sure what your blog prefix is, it’s the prefix that is used in all of the other tables for your blog).

    Fowie

Viewing 1 replies (of 1 total)