Antes el usuario
root no tenía clave por lo que entraba directo y el
config.inc.php estaba de esta forma.
Código PHP:
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
// with 'config' auth_type)
Al cambiarle la clave a
root, debes cambiar lo siguiente:
Código PHP:
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = 'lacontraseña'; // MySQL password (only needed
// with 'config' auth_type)