If you do not want to upgrade your MySql install or downgrade your phpMyAdmin you can alternately just modify the common.inc.php file so phpMyAdmin will stop complaining.
In CentOS 6 go to:
/etc/zpanel/panel/etc/apps/phpmyadmin/libraries/common.inc.php
If you open this up, there is a line:
Line 994
Change it to say:
Now you can use phpMyAdmin without it complaining.
In CentOS 6 go to:
/etc/zpanel/panel/etc/apps/phpmyadmin/libraries/common.inc.php
If you open this up, there is a line:
Line 994
Code:
if (PMA_MYSQL_INT_VERSION < 50500) {
Change it to say:
Code:
if (PMA_MYSQL_INT_VERSION < 50100) {
Now you can use phpMyAdmin without it complaining.