The Time
The Time

Reputation: 737

I can not access phpMyAdmin on XAMPP

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

Answers (6)

SHAGUN SHARMA
SHAGUN SHARMA

Reputation: 1688

This issue is common and can easily be resolved! So no need to worry.

  • First of all, open XAMPP in your device and install the MySQL and Apache by clicking on the service checkbox beside them having a red cross on it (which will change to a green tick once the modules are installed).
  • After that, click on the start button to start the modules (as shown in the image). enter image description here
  • Once you have completed the above procedure, open your browser and type https://localhost/phpmyadmin/.
  • You can now use your phpmyadmin to create a database.

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

AP Sujeeth
AP Sujeeth

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

Osman Gani Khan Masum
Osman Gani Khan Masum

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

Ben Chang
Ben Chang

Reputation: 131

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

Upvotes: 11

Akbar Soft
Akbar Soft

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

Marlon
Marlon

Reputation: 3

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

Upvotes: -2

Related Questions