moodle baracuda检查旁路或最高羚羊版本

lsmepo6l  于 2021-06-23  发布在  Mysql
关注(0)|答案(1)|浏览(287)

在我们的服务器上,我们无法更改任何数据库设置,而moodle的更新版本需要barracuda文件格式,而不是antelope。
我们正在运行3.4.1。3.5+需要innodb。我原以为升级到3.4.4就可以了,但也有同样的问题。
我能用的最高版本是什么?或者可以绕过这些检查,继续使用当前数据库吗?

Your database uses Antelope as the file format. Full UTF-8 support in MySQL and MariaDB requires the Barracuda file format. Please switch to the Barracuda file format. See the documentation MySQL full unicode support for details.

Check
mysql_full_unicode_support#Large_prefix 
this test must pass
For full support of UTF-8 both MySQL and MariaDB require you to change your MySQL setting 'innodb_large_prefix' to 'ON'. See the documentation for further details.
c6ubokkw

c6ubokkw1#

我通过编辑config.php来解决这个问题

dbcollation' => 'utf8_unicode_ci'

换句话说,部分mysql而不是完全支持baracudda是可选的。

相关问题