Saturday, December 17, 2016
Sunday, April 24, 2016
Friday, April 15, 2016
Friday, January 8, 2016
Access denied for user 'root'@'localhost' (using password: YES)
#1045 - Access denied for user 'root'@'localhost' (using password: YES)
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
change :
$cfg['Servers'][$i]['auth_type'] = 'http';
to
$cfg['Servers'][$i]['auth_type'] = 'cookie';
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.
change :
$cfg['Servers'][$i]['auth_type'] = 'http';
to
$cfg['Servers'][$i]['auth_type'] = 'cookie';
Tuesday, January 5, 2016
Reset Password Root phpmyadmin
- D:\xampp\apache\conf\extra\httpd-xampp.conf
- Change AllowOverride AuthConfig TO AllowOverride all
Alias /phpmyadmin "D:/xampp/xampp/phpMyAdmin/"
AllowOverride AuthConfig
#AllowOverride all
Order allow,deny
Allow from all
- Change in D:\xampp\phpMyAdmin\config.inc.php cookie to config
// $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)?
Subscribe to:
Posts (Atom)