The cli-based installation of a specific Joomla 5.x site using Akeeba 10.0.1 fails. As far as I can see, it seems to be related to the rather awkward table schema used by convertforms, with one single column enforcing utfmb3 instead of utfmb4:
CREATE TABLE `ul1q8_convertforms_tasks` (
`id` mediumint NOT NULL,
`form_id` mediumint NOT NULL,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`action` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`app` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`trigger` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`connection_id` mediumint DEFAULT NULL,
`options` text COLLATE utf8mb4_unicode_ci,
`conditions` text COLLATE utf8mb4_unicode_ci,
`silentfail` tinyint NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`created` datetime NOT NULL,
`created_by` mediumint NOT NULL,
`ordering` smallint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
When restoring this site, I get the following message:
Database server error reply:
ErrNo #1253
COLLATION 'utf8mb4_unicode_ci' is not valid for CHARACTER SET 'utf8'
SQL=CREATE TABLE `bmwe_convertforms_tasks` (
`id` mediumint NOT NULL AUTO_INCREMENT,
`form_id` mediumint NOT NULL,
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT
NULL,
`state` tinyint NOT NULL DEFAULT '0',
`action` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT
NULL,
`app` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT
NULL,
`trigger` varchar(100) CHARACTER SET utf8 COLLATE utf8mb4_unicode_ci NOT
NULL,
`connection_id` mediumint DEFAULT NULL,
`options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`conditions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`silentfail` tinyint NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`created` datetime NOT NULL,
`created_by` mediumint NOT NULL,
`ordering` smallint NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
The settings used for the CLI yaml are:
utf8db: true
utf8tables: true
utf8mb4: true
charset_conversion: true
It seems like the mixed collations cause an invalid collation set with the used settings in the CLI restore process.