Ver Mensaje Individual
  #7 (permalink)  
Antiguo 16/06/2011, 22:40
adri_ambar
 
Fecha de Ingreso: junio-2011
Mensajes: 1
Antigüedad: 12 años, 10 meses
Puntos: 0
Respuesta: Problema consola-myphpadmin?

Hola amigo, me paso el mismo problema, pero se soluciona de manera sencilla, tienes que modificar el archivo config.inc.php, se debe de encontrar en la siguiente dirección: "C:\wamp\apps\phpmyadmin3.2.0.1". Lo que tienes que hacer, es abrirlo y como antes no tenias password debería de aparecer así:
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

Modificalo

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'NUEVA PASS';
$cfg['Servers'][$i]['AllowNoPassword'] ='false' ;

Luego reinicia el wamp o el mysql o lo que estes utilizando y listo, problema resuelto.