Tapani 如果 MySQL 的版本低,可以修改字符集和编码。
打开 /flarum/core/blob/master/src/Install/Console/InstallCommand.php 文件
查找 storeConfiguration() 函数,将里面的
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
修改为
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',