Reputation: 737
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.
Upvotes: 17
Views: 137338
Reputation: 1688
This issue is common and can easily be resolved! So no need to worry.
But in some cases, it might show a warning of Your connection is not private.
In such cases, all you need to do is to click on the Advanced option shown below and click on the link Proceed to page (unsafe) link.
You are now ready to go!
Upvotes: 4
Reputation: 1
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)
Upvotes: 0
Reputation: 488
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...:)
Upvotes: 4
Reputation: 131
I had this issue with uppercase letters
Using lowercase letters solved the issue for me.
Running XAMPP v3.2.2 on windows 10
Upvotes: 11
Reputation: 1066
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
Upvotes: 9
Reputation: 3
try to know the server's ip address by typing ipconfig in cmd, example: 192.168.22.5/phpmyadmin
Upvotes: -2