We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4f50b commit 1ef818aCopy full SHA for 1ef818a
install/lib/installer_base.lib.php
@@ -267,7 +267,8 @@ public function check_mysql_version() {
267
global $conf;
268
269
$min_mariadb_version = '10.0.5';
270
- $min_mysql_version = '8.0.4';
+ // Set MySQL version to 8.0.4 after CentOS 7 support ended to allow preg_* functions in SQL queries
271
+ $min_mysql_version = '5.5';
272
273
$rec = $this->db->queryOneRecord('SELECT VERSION() as mysql_version');
274
if(is_array($rec)) {
0 commit comments