Installing phpmyadmin on php7 : Ubuntu 14.04

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?

4

1 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 phpmyadmin

Note: this solution was tested witn Apache web server.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like