malith
malith

Reputation: 35

I try to go to my phpmyadmin localhost but MySQL said: Documentation Cannot connect: invalid settings

enter image description here

MySQL said: Documentation

Cannot connect: invalid settings.

Upvotes: 0

Views: 354

Answers (3)

user19308327
user19308327

Reputation: 1

i tried to acess my website through localhost and i got a message said that The webpage cannot be found HTTP 404 Most likely causes: •There might be a typing error in the address. •If you clicked on a link, it may be out of date. What you can try: Retype the address. Go

Upvotes: 0

IT World
IT World

Reputation: 46

Write instead of localhost 127.0.0.1

or

Open config.inc.php and find $cfg['Servers'][$i]['host'] = '127.0.0.1'; and change 127.0.0.1 to localhost. It should work, it worked by me.

Upvotes: 1

malith
malith

Reputation: 35

change "config.inc.php " file

3306 is mysql main port

/* Bind to the localhost ipv4 address and tcp */

$cfg['Servers'][$i]['host'] = 'localhost:3306';

Upvotes: 1

Related Questions