Hi
I'm trying to restore my production site Joomla to my MAMP environment.
I'm getting a database restore error telling me about unknown collation.
Database error processing line 11Database server error reply:
ErrNo #1273
Unknown collation: 'utf8mb3_uca1400_ai_ci'
Raw query text:
CREATE TABLE `cob0g_sppagebuilder_addons` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL DEFAULT '', `code` mediumtext NOT NULL, `ordering` int(11) NOT NULL DEFAULT 0, `created` datetime NOT NULL, `created_by` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_uca1400_ai_ci
When I google for this, it's saying I'm trying to restore from MariaDB to mySQL. This is true
My production server is running
- Server version: 11.8.6-MariaDB-ubu2404 - mariadb.org binary distribution
My MAMP is running
- Server version: 5.7.39 - MySQL Community Server (GPL)
My research recommends forcing the import collation to utf8mb3_general_ci or utf8mb3_unicode_ci. Obviously not possible for an end user.
I was hoping to find a setting to override this either in the kickstart importer or the akeeba backup generator.
Can you help me?