PhpMyAdmin gives 404 error in Linux

1

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.

    
asked by anonymous 14.08.2017 / 00:56

2 answers

1

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

    
30.08.2017 / 20:11
0

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.

    
14.08.2017 / 12:55