PHPMYADMIN not found
You will need to configure your apache2.conf to make phpMyAdmin works.
sudo gedit /etc/apache2/apache2.conf
Then add the following line to the end of the file.
Include /etc/phpmyadmin/apache.conf
and restart apache by executing the command
sudo /etc/init.d/apache2 restart
Still, problem exits then check, if the directory called
/usr/share/phpmyadmin/ exists. If it does, just move it to /var/www/phpmyadmin by executing this command:mv /usr/share/phpmyadmin /var/www/phpmyadmin
Open your browser and open
http://localhost/phpmyadmin. Now it should work.
Or else u can link the phpmyadmin directory in /var/www
sudo ln -s /usr/share/phpmyadmin /var/www

Post a Comment