I have LAMP stack on Ubuntu 14.04.
I have upgraded from php 5.0 to php 7.0 but i couldn't install phpmyadmin.
I went to my public folder which is var/www/ and ran that code,
git clone --depth=1 --branch=STABLE
It looks like it is installed i see the folder in html directory but when i check it gives nothing.
what am i missing?
41 Answer
I've successfully installed phpMyadmin on ubuntu 14.04 with php7 using this PPA :
sudo add-apt-repository ppa:nijel/phpmyadmin
sudo apt-get update
sudo apt-get install phpmyadminNote: this solution was tested witn Apache web server.
3