Import SQL errors, and it’s always Wordfence
-
I’m recently learning web development seriously, so I now have a local development environment using Laragon on my computer.
So my problem is when I export my website’s SQL database, and then import it into my local dev, WordFence’s tables almost always causes import errors. The latest error is:Error SQL query: Copy -- -------------------------------------------------------- -- -- Table structure for table cn_wfauditevents -- CREATE TABLE cn_wfauditevents ( id bigint(20) UNSIGNED NOT NULL, type varchar(255) NOT NULL DEFAULT '', data text NOT NULL, event_time double(14,4) NOT NULL, request_id bigint(20) UNSIGNED NOT NULL, state enum('new','sending','sent') NOT NULL DEFAULT 'new', state_timestamp timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci;
MySQL said: #1273 - Unknown collation: 'utf8mb3_uca1400_ai_ci'I still don’t know much in terms of backend, but as far as I can tell the MySQl 8.4.3 that’s included with Laragon doesn’t have “utf8mb3_uca1400_ai_ci” collation and why it’s causing the error?
Aside from excluding all the WordFence tables whenever I export the database, can anyone help because I’m not sure how to fix this…- Should I be exporting my WordPress’ database with different settings?
- Should I try to figure out how to add utf8mb3_uca1400_ai_ci into my version of MySQL?
You must be logged in to reply to this topic.