Saludos y gracias.
Los errores que me tira cuando abro el phpMyAdmi son los siguiente:
"No se halló la extensión PHP mbstring y al parecer usted está usando tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas de caracteres sin la extensión mbstring y podría dar resultados inesperados."
y este otro:
"no se pudo cargar la extensión mcrypt,<br />por favor revise su configuración de PHP."
Me faltara definir algun parametro en especial??
Gracias.
Código PHP:
<?php
$cfg['blowfish_secret'] = 'pongo aqui una frase'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
$cfg['PmaAbsoluteUri'] = 'http://servidor.com/phpMyAdmin/';
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'USER';
$cfg['Servers'][$i]['password'] = 'PASSWORD';
$cfg['Servers'][$i]['only_db'] = 'Base_Datos';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>