phpMyAdmin in Xampp not working

后端 未结 7 2128

I\'m getting below error when I type in localhost/phpMyAdmin after starting apache and mysql server in Xampp in Windows 7 environment.

Is there a way I can fix this issu

7条回答
  •  逝去的感伤
    2021-02-13 01:44

    404 is the code for page not found

    If you get this while running both mysql and apache It means the Url is not correct:

    1. Check the alias like in @kamil's comments
    2. If alias is correct then you need to specify the port.

    http://localhost/phpmyadmin is the url if your port is set to default 80.

    In my case I already had a service listennig on that port so I had to change it.

    The fix is to add the port if it is a custom one:

    http://localhost:/phpmyadmin

    To find out which port you have look inside of httpd.conf.

    here is a screenshot for xampp:

    enter image description here To quickly find it, search for listen:

    enter image description here

提交回复
热议问题