Not Found - phpmyadmin
I installed phpmyadmin with apache on Linux but I was seeing this at localhost/phpmyadmin
To fix this I had to make changes to apache.conf
and added the following line at the end...
then restart the apache..
Not Found The requested URL /phpmyadmin/ was not found on this server. Apache/2.2.17 (Ubuntu) Server at localhost Port 80
To fix this I had to make changes to apache.conf
sudo vim /etc/apache2/apache2.conf
and added the following line at the end...
Include /etc/phpmyadmin/apache.conf
then restart the apache..
sudo service apache2 restart
Comments
Post a Comment