I can not access phpMyAdmin on XAMPP

别说谁变了你拦得住时间么 提交于 2019-12-06 19:08:57

问题


I have my XAMMP installed on WINDOWS 8. I can access my localhost like thislocalhost:800 I am trying to access phpmyadmin from XAMPP but when I am clicking on the button or type in http://localhost:800/phpmyadmin/ I am just getting a white homepage without anything on it?! Does anyone know whats gonig on? It worked fine yesterday.


回答1:


when I was a novice in this path, I had faced that kind of problem and then I solved it by myself.

That is very simple. Don't get panic. I think you won't need to do any code works or any search.

Just, in your address http://localhost:800/phpmyadmin/

just delete :800 things.

then your address will be http://localhost/phpmyadmin/

hit enter and watch your path is working...:)




回答2:


Open phpMyAdmin>config.inc.php in your favourite text editor.

Search for $cfg['Servers'][$i]['auth_type'] = 'config';

Replace it with $cfg['Servers'][$i]['auth_type'] = 'cookie';

browse localhost/phpmyadmin. and username will be root, no password




回答3:


I had this issue with uppercase letters

http://localhost/phpMyAdmin/

Using lowercase letters solved the issue for me.

http://localhost/phpmyadmin/

Running XAMPP v3.2.2 on windows 10




回答4:


You need to start MySQL on the XAMPP control panel to allow the Apache server to access the database in order to authenticate to the administration panel (phpMyAdmin)




回答5:


try to know the server's ip address by typing ipconfig in cmd, example: 192.168.22.5/phpmyadmin



来源:https://stackoverflow.com/questions/30255567/i-can-not-access-phpmyadmin-on-xampp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!