29.06.2012, 13:08
Yes he did.
It's likely that either:
a) Your password is incorrect (it's not blank)
b) The user "root" doesn't have the permissions needed to access the database
Also make sure your MySQL server is indeed ON.
If you're using XAMPP, go to xampp/phpMyAdmin/config.php and make sure your MySQL settings are as followed:
It's likely that either:
a) Your password is incorrect (it's not blank)
b) The user "root" doesn't have the permissions needed to access the database
Also make sure your MySQL server is indeed ON.
If you're using XAMPP, go to xampp/phpMyAdmin/config.php and make sure your MySQL settings are as followed:
PHP код:
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;