Ver Mensaje Individual
  #14 (permalink)  
Antiguo 26/11/2003, 19:15
Avatar de Jokin
Jokin
 
Fecha de Ingreso: enero-2002
Mensajes: 725
Antigüedad: 22 años, 2 meses
Puntos: 1
De acuerdo

Ok

Tengo instalado el phpMyAdmin y parece que correctamente. He realizado los cambios que se indican :

$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/';

a lo que le he añadido de mi cosecha, por ser el puerto habilitado para Apache :

$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin:8081/';

Según el punto cinco (5 - Configurando los usuarios del servidor MySQL) tengo que llamar a:

http://localhost/phpmyadmin/index.php

en mi caso

http://localhost:8081/phpmyadmin/index.php

pero no me hace nada y se queda en blanco el IE . No se si vale para algo pero si indico:

http://localhost:8081/phpmyadmin/translators.html

...funciona vamos que funciona con html pero no con el index.php

...recordad que antes

httP://localhost:8081/info.php ha funcionado por lo que PHP parece estar bien instalado.

...no hace nada se queda como buscando....antes sin poncer el 8081 me daba error pero ahora se qued como colgando. Alguna sugerencia?

*****************************
Les indico a continuación las líneas modificads en config.inc.php:


$cfg['PmaAbsoluteUri'] = 'http://localhost:8081/phpmyadmin/';


/**
* Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
* You should use this if and ONLY if the PmaAbsoluteUri auto-detection
* works perfectly.
*/
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;

/**
* Disable the default warning that is displayed on the DB Details Structure page if
* any of the required Tables for the relationfeatures could not be found
*/
$cfg['PmaNoRelation_DisableWarning'] = FALSE;

/**
* The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
* at least one server configuration uses 'cookie' auth_type, enter here a
* passphrase that will be used by blowfish.
*/
$cfg['blowfish_secret'] = 'prueba';

/**
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] ='8081' ; // MySQL port - leave blank for default port

***************************************
Un saludo
__________________