Its the CHARSET. I changed from utf8mb4 to utf8
Also change
CREATE TABLE IF NOT EXISTS `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8_unicode_520_ci ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_520_ci AUTO_INCREMENT=1 ;
removed the 520_
All working
Please Log in or Create an account to join the conversation.