Error PhpMyAdmin the database fails

0

I am in a strange problem
My database in myphpadmin shows me the following error:

Try to import the backing of my previous table where (correctly I showed repeated table) but likewise mind caused errors

It's very strange since I reinstalled my xampp and the error persists, I think it will be something related to some missing folder. If someone found this problem could you advise me?

    
asked by claus 20.08.2018 в 20:45
source

2 answers

1

As indicated by the error messages, the user credentials set in the configuration file c: \ xampp \ phpMyAdmin \ config.inc.php are not correct.

You must check that the values of the following lines match those established in your phpMyAdmin in Accounts and User

$ cfg ['Servers'] [$ i] ['user'] = '';

$ cfg ['Servers'] [$ i] ['password'] = '';

$ cfg ['Servers'] [$ i] ['host'] = '127.0.0.1';

If after this check the problem persists there is probably a second server on your computer resolving by the same port in localhost.

I hope it will be helpful, greetings.

    
answered by 20.08.2018 / 21:11
source
1

Go to the xampp folder and go to phpMyAdmin, by default:

C:\xampp\phpMyAdmin

open the file config.inc with any text editor, find the following lines and replace them with http :

$cfg['Servers'][$i]['connect_type'] = 'tcp'; //cambia tcp por http.
$cfg['Servers'][$i]['auth_type'] = 'config'; //cambia config por http.

They should stay like this:

$cfg['Servers'][$i]['connect_type'] = 'http';
$cfg['Servers'][$i]['auth_type'] = 'http'; 

Restart xampp and voila, comment the results. :)

    
answered by 20.08.2018 в 21:10