I've got all MySQL tables converted to Aria and the XtraDB default, which replaces InnoDB in place - runs sweet as !
Found a bug... (due to MariaDB versions being '10.0.16-MariaDB')
In ../admincp/index.php line 55 make the following change (vB4.2.2)
PHP Code:
//if ($mysqlversion['version'] >= '3.23')
if (version_compare($mysqlversion['version'],'3.23', '>='))
also in ../admincp/diagnostic.php line 340 make the following change (vB4.2.2)
PHP Code:
//if ($mysqlversion['version'] < '3.23')
if (version_compare($mysqlversion['version'],'3.23', '<'))
and line 719
PHP Code:
//if ($mysqlversion['version'] < '3.23')
if (version_compare($mysqlversion['version'],'3.23', '<'))
--------------- Added [DATE]1424090842[/DATE] at [TIME]1424090842[/TIME] ---------------
Found a bug... (due to MariaDB versions being '10.0.16-MariaDB')
In ../admincp/index.php line 55 make the following change (vB4.2.2)
PHP Code:
//if ($mysqlversion['version'] >= '3.23')
if (version_compare($mysqlversion['version'],'3.23', '>='))