Support » Plugin: WP Statistics » Error showing for wp_statistics_useronline

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Greg Ross

    (@gregross)

    Sounds like you have a currpted MySQL table. You can either repair it through the MySQL interface, or since it’s just the users online table, delete it and recreate it.

    CREATE TABLE wp_statistics_useronline (
    ID int(11) NOT NULL AUTO_INCREMENT,
    ip varchar(20) NOT NULL,
    timestamp int(10) NOT NULL,
    date datetime NOT NULL,
    referred text CHARACTER SET utf8 NOT NULL,
    agent varchar(255) NOT NULL,
    platform varchar(255),
    version varchar(255),
    PRIMARY KEY (ID)
    ) CHARSET=utf8

    Plugin Contributor Greg Ross

    (@gregross)

    Closing due to inactivity.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error showing for wp_statistics_useronline’ is closed to new replies.