Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    These days will be a new release with a lot of fixes. Stay close! 🙂

    Thanks

    Thread Starter idevsbrbrown

    (@idevsbrbrown)

    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

    Thread Starter idevsbrbrown

    (@idevsbrbrown)

    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.

    Thread Starter idevsbrbrown

    (@idevsbrbrown)

    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

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Subscribes Not Being Captured’ is closed to new replies.