see the config.inc.php and look for the next code:
Quote:
|
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
|
and enter the host,
further down:
Quote:
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = ''; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed with 'config' auth_type)
|
enter the kind of authentication, user and if needed password
and even further down you could try adding the database here:
Quote:
$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only
// this db is displayed in left frame
// It may also be an array of db-names, where sorting order is relevant.
|
Hope it helps.