Upgrade to the Latest PHPMyAdmin on Ubuntu 18.04

Updated on January 8, 2020
Upgrade to the Latest PHPMyAdmin on Ubuntu 18.04 header image

The PHPMyAdmin that is distributed by Ubuntu repos is incompatible with PHP 7.2+. This causes syntax errors with count(), as well as some other calls. You can resolve this by installing the most recent release from the PHPMyAdmin PPA, which is the latest copy built and packaged from source.

Run the following commands to install the Ubuntu PPA:

add-apt-repository ppa:phpmyadmin/ppa
apt-get -y update
export DEBIAN_FRONTEND=noninteractive

Now you can install PHPMyAdmin:

apt-get -yq install phpmyadmin