Thank you, @maxbyer, for checking the database!
We introduced two new columns in version 14.11, but it seems there was an issue during the update, resulting in the columns not being created in your database.
To resolve this, please run the following SQL command to add the missing columns:
ALTER TABLE wp_statistics_visitor ADD source_channel VARCHAR(50) NULL DEFAULT NULL , ADD source_name VARCHAR(100) NULL DEFAULT NULL;
Make sure to replace wp_
with your custom database prefix if applicable.
Additionally, please verify if the visitor_id
column exists in the wp_statistics_useronline
table. If not, use the following command to create it:
ALTER TABLE wp_statistics_useronline ADD visitor_id BIGINT NOT NULL;
We sincerely apologize for any inconvenience this may have caused. Rest assured, we are committed to improving WP Statistics to prevent similar issues in the future.
We look forward to hearing back from you!
Regards,
Matthew