hcaptcha_events SQL table doesn’t exist
-
WordPress database error Table ‘myusername_simplex.hcaptcha_events’ doesn’t exist for query SHOW FULL COLUMNS FROM
hcaptcha_eventsmade by require(‘wp-blog-header.php’), …appeared in the log upon submitting HivePress Reviews form (where i have tried to add hcaptcha). I am not aware about deleting that table and disabling/enabling hcaptcha plugin does not create it.
At /wp-admin/options-general.php?page=hcaptcha&tab=general (plugin version 5.0.0, WP 7, PHP 8.4) i have disabled “Enable Statistic” and click Save. Then enabled it again, click save.
AI told me to run:
CREATE TABLE IF NOT EXISTS hcaptcha_events (
id bigint(20) unsigned AUTO_INCREMENT PRIMARY KEY,
event_type varchar(50) NOT NULL,
status varchar(20) NOT NULL,
timestamp datetime DEFAULT CURRENT_TIMESTAMP,
INDEX idx_timestamp (timestamp)
);so i have ran it. I have free version of a plugin, no Pro.
You must be logged in to reply to this topic.