Diferencia entre revisiones de «PhpMyAdmin»
De Guía Ubuntu
m (corrección de formato y errores ortográficos) |
|||
Línea 1: | Línea 1: | ||
− | Para | + | Para instalarlo hay que descargar el archivo de phpmyadmin.net |
− | + | # Descomprimir dentro del directorio del Apache por ejemplo: /var/www/pma | |
− | + | # Copiar el archivo de Configuracion que se provee por defecto "config.sample.inc.php" como "config.inc.php". | |
− | + | # Editarlo y ponerle los valores correspondientes con tu MySQL. | |
− | Ejemplo del | + | Ejemplo del mío con Autenticación x cookies: |
− | [code] | + | [code] |
− | <?php | + | <?php |
− | + | ||
− | $cfg['blowfish_secret'] = 'aca_algo_cualquiera'; | + | $cfg['blowfish_secret'] = 'aca_algo_cualquiera'; |
− | /* | + | /* |
− | + | * Servers configuration | |
− | + | */ | |
− | $i = 0; | + | $i = 0; |
− | + | ||
− | /* | + | /* |
− | + | * First server | |
− | + | */ | |
− | $i++; | + | $i++; |
− | /* Authentication type */ | + | /* Authentication type */ |
− | $cfg['Servers'][$i]['auth_type'] = 'cookie'; | + | $cfg['Servers'][$i]['auth_type'] = 'cookie'; |
− | /* Server parameters */ | + | /* Server parameters */ |
− | $cfg['Servers'][$i]['host'] = 'localhost'; | + | $cfg['Servers'][$i]['host'] = 'localhost'; |
− | $cfg['Servers'][$i]['connect_type'] = 'tcp'; | + | $cfg['Servers'][$i]['connect_type'] = 'tcp'; |
− | $cfg['Servers'][$i]['compress'] = false; | + | $cfg['Servers'][$i]['compress'] = false; |
− | /* Select mysqli if your server has it */ | + | /* Select mysqli if your server has it */ |
− | $cfg['Servers'][$i]['extension'] = 'mysqli'; //mysqli es mas performante puede utilizarse en su defeto mysql | + | $cfg['Servers'][$i]['extension'] = 'mysqli'; //mysqli es mas performante puede utilizarse en su defeto mysql |
− | + | ||
− | $cfg['UploadDir'] = '/upload/'; | + | $cfg['UploadDir'] = '/upload/'; |
− | $cfg['SaveDir'] = '/download/'; | + | $cfg['SaveDir'] = '/download/'; |
− | + | ||
− | ?> | + | ?> |
− | + | ||
− | [/code] | + | [/code] |
Revisión de 13:54 25 jun 2007
Para instalarlo hay que descargar el archivo de phpmyadmin.net
- Descomprimir dentro del directorio del Apache por ejemplo: /var/www/pma
- Copiar el archivo de Configuracion que se provee por defecto "config.sample.inc.php" como "config.inc.php".
- Editarlo y ponerle los valores correspondientes con tu MySQL.
Ejemplo del mío con Autenticación x cookies:
[code] <?php $cfg['blowfish_secret'] = 'aca_algo_cualquiera'; /* * Servers configuration */ $i = 0; /* * First server */ $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* 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'] = 'mysqli'; //mysqli es mas performante puede utilizarse en su defeto mysql $cfg['UploadDir'] = '/upload/'; $cfg['SaveDir'] = '/download/'; ?> [/code]