Cannot upgrade to the latest PHPMyAdmin when starting Nginx and PHP5-FPM

At the moment, I have installed the LEMP stack installation using nginx 1.10.0, PHP-FPM 5.6.21 and MySQL 5.5.49

I can install PhpMyAdmin using the default Ubuntu package or through the PPA package ppa:nijel/phpmyadmin

The problem with them is that they are quite outdated, since by default the package is 4.0.10 and nijel is 4.3.8.

Ideally, I would like to make it work with the PPA package ppa:nijel/phpmyadmin, since it works with the latest version 4.6.1, however, whenever I install this PPA and try to start the installation, I get the following errors.

The following packages have unmet dependencies:
phpmyadmin : Depends: php but it is not installable
          Depends: php-mysql but it is not installable
          Depends: php-cli but it is not installable
          Depends: php-json but it is not installable
          Depends: php-mbstring but it is not installable
          Depends: php-xml but it is not installable
          Recommends: php-gd but it is not installable
          Recommends: php-bz2 but it is not installable
          Recommends: php-zip but it is not installable
          Recommends: php-tcpdf but it is not going to be installed

I have an ansible script that launches and installs PhpMyAdmin without any problems, so ideally I would like this to work with ppa:nijel/phpmyadmin

+4
1

PHP PECL (https://launchpad.net/~ondrej/+archive/ubuntu/php) :

sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update

phpmyadmin

+2

All Articles