Reputation: 1097
I am configuring Moodle 2.8.1 version. while configuring it loads a page where Server Checks are validated.
I have sorted all the errors and now it is displaying only one server check error which is
mysql (5.0.81-community-nt)
version 5.5.31 is required and you are running 5.0.81
where I have installed newer version of PhpMyAdmin which is:
But I don't understand why moodle gives me error like:
It says I am running mysql version 5.0.x but I have installed a newer version of MySQL which is 5.6.x
Upvotes: 2
Views: 10003
Reputation: 51
Go to htdocs and find moodle "config.php" then on $CFG->dbtype = 'mysqli'; change into $CFG->dbtype = 'mariadb';
It means that you should change your dbtype to mariadb instead off mysqli
Upvotes: 5
Reputation: 184
Ok. Update PHP to 5.6.6, might solve your problem. URL: http://php.net/downloads.php
Upvotes: 0