I followed the installation as this link , but when I type < a href="http: // localhost / phpmyadmin"> link , gives 404 error. It looks like it installed correctly.
Need some permission or something? I rebooted Apache and nothing.
I followed the installation as this link , but when I type < a href="http: // localhost / phpmyadmin"> link , gives 404 error. It looks like it installed correctly.
Need some permission or something? I rebooted Apache and nothing.
Hello,
I faced the same difficulty and managed to solve the problem only by including the line Include /etc/phpmyadmin/apache.conf
at the end of the file /etc/apache2/apache2.conf
.
Source: link
You are required to type the URL in the browser in lowercase http://localhost/phpmyadmin
. If you type in uppercase /PhpMyAdmin
the application will not be found, because it is defined in the Apache server configuration:
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
It worked after you copied the files because you created the directory and did a "new" application installation within the www directory of the server, without actually using the one already installed by default.