Hello,
These days will be a new release with a lot of fixes. Stay close! 🙂
Thanks
Thanks for the update. Getting ready to go live this week and needing this functionality within a couple days, so hopefully sooner than later.
cheers
Hello,
If you can’t wait for the official release and you have some technical skills… then you can create the missing table using phpmyadmin:
CREATE TABLE IF NOT EXISTS prefix_wpmm_subscribers (
id_subscriber bigint(20) NOT NULL AUTO_INCREMENT,
email varchar(50) NOT NULL,
insert_date datetime NOT NULL,
PRIMARY KEY (id_subscriber)
) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
Replace prefix with $table_prefix value from wp-config.php.
Thanks
Thanks George.
Created the table and tested, but still nothing being written to the table.
cheers
Hello,
Hmm… strange. Please tell me the name of the table, maybe you did something wrong. Thanks.
There are two, I’m assuming one was created with the original install, neither of which have any records.
Assume this to be my prefix: xxx_xxxxxxxx
xxx_xxxxxxxxwpmm_subscribers (original)
and
xxx_xxxxxxxx_wpmm_subscribers (created per instruction)
cheers