(The other option is to downgrade phpMyAdmin)
Perform the following to downgrade:
Change directories to phpMyAdmin directory
Move current to old directory
Download phpMyAdmin from the following location (could be newer versions, check on main site):
Extract the package
Clean up
Move extracted phpMyAdmin folder to its correct directory
Change permissions on directory and all subfolders and files
Change ownership on directory and all subfolders and files
Copy phpMyAdmin config from old to new
Clean up
Source: http://forums.zpanelcp.com/Thread-HOW-TO...PHPMyadmin
This worked for me
-DiscoWay
Perform the following to downgrade:
Change directories to phpMyAdmin directory
Code:
cd /etc/zpanel/panel/etc/apps
Move current to old directory
Code:
mv phpmyadmin phpmyadmin_old
Download phpMyAdmin from the following location (could be newer versions, check on main site):
Code:
wget http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.0.10.1/phpMyAdmin-4.0.10.1-all-languages.tar.gz/download
Extract the package
Code:
tar -zxvf phpMyAdmin-*.tar.gz
Clean up
Code:
rm phpMyAdmin-*.tar.gz
Move extracted phpMyAdmin folder to its correct directory
Code:
mv phpMyAdmin-*/ /etc/zpanel/panel/etc/apps/phpmyadmin
Change permissions on directory and all subfolders and files
Code:
chmod 777 -R phpmyadmin/
Change ownership on directory and all subfolders and files
Code:
chown root:root -R phpmyadmin/
Copy phpMyAdmin config from old to new
Code:
cp phpmyadmin_old/config.inc.php phpmyadmin/config.inc.php
Clean up
Code:
rm -Rf phpmyadmin_old
Source: http://forums.zpanelcp.com/Thread-HOW-TO...PHPMyadmin
This worked for me
-DiscoWay