Hariprabu
Hariprabu

Reputation: 71

Phpmyadmin not connecting in xampp using PHP

I tried to access the phpmyadmin using public ip.But cant able to connect.It showing error like

"Access denied for user 'root'@'u15306256.onlinehome-server.com' (using password: NO)".

Recently I changed the phpmyadmin version.I don know whether its create problem or not.

Anyone help me.Thanks in advance

Upvotes: 0

Views: 428

Answers (2)

Wenhuang Lin
Wenhuang Lin

Reputation: 214

Try:

grant all on *.* to root@u15306256

Upvotes: 0

Vinay
Vinay

Reputation: 2594

check phpMyAdmin/config.inc.php Starting from

server configurations

To have phpmyadmin work properly from a remote host, you also need to ensure that in the phpmyadmin config file that you use your outside IP address (not 127.0.0.1 or 'localhost')

But remember! XAMPP is only meant for local developing! If u open it to the public u might get hacked.

Upvotes: 2

Related Questions