PHPmyAdmin different behaviour on 2 servers
-
- Support team
- Posts: 1096
- Joined: Sat Sep 06, 2014 9:58 pm
- Contact:
- Os: Debian 8x
- Web: apache + nginx
PHPmyAdmin different behaviour on 2 servers
Hi,
I have 2 VestaCPs installed but I see different behaviour oh PhPMyAdmin on both
1st Server doesn't show these 2 TABS
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

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 ??
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
Server2 - ubuntu14/mysql/php5.5.9/PHPMyAdmin v. 4.0.10deb1

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
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
Upgrade PhpMyAdmin
Créer update_pmy.sh
et éditer et ajouter ce code
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"