Page 1 of 1

PHPmyAdmin different behaviour on 2 servers

Posted: Thu Feb 19, 2015 6:00 am
by mehargags
Hi,

I have 2 VestaCPs installed but I see different behaviour oh PhPMyAdmin on both

1st Server doesn't show these 2 TABS

Code: Select all

Routines|    Events   |    Triggers
Server 1 - Debian7/mariadb/php5.6.5/PHPMyAdmin v. 3.4.11.1deb2+deb7u1

Server2 - ubuntu14/mysql/php5.5.9/PHPMyAdmin v. 4.0.10deb1

Image

is it because of the PHPMyAdmin Version being newer on Ubuntu ? if so, is it safe & Stable to upgrade to a new version on Debian7 ??

Re: PHPmyAdmin different behaviour on 2 servers

Posted: Thu Feb 19, 2015 4:46 pm
by skurudo
Em... it's versions from official repositories. When in repo be new software version, simple apt-get upgrade install new version.

Re: PHPmyAdmin different behaviour on 2 servers

Posted: Thu Jun 11, 2015 3:24 pm
by MrPalamen
Upgrade PhpMyAdmin

Créer update_pmy.sh
et éditer et ajouter ce code

Code: Select all

#bin/sh
mkdir /root/upgradepma/
cd /root/upgradepma/
wget https://files.phpmyadmin.net/phpMyAdmin/4.4.10/phpMyAdmin-4.4.10-all-languages.zip
unzip phpMyAdmin-4.4.10-all-languages.zip
mv phpMyAdmin-4.4.10-all-languages/ phpmyadmin/
rm -r /usr/share/phpmyadmin/
mv phpmyadmin/ /usr/share/
cd /root/
rm -r /root/upgradepma/
echo "Upgrade Ok"