$cfgServers[1]['host'] = 'localhost';           // MySQL hostname
$cfgServers[1]['port'] = '';                    // MySQL port - leave blank for default port
$cfgServers[1]['adv_auth'] = false;             // Use advanced authentication?
$cfgServers[1]['stduser'] = 'root';             // MySQL standard user (only needed with advanced auth)
$cfgServers[1]['stdpass'] = '';                 // MySQL standard password (only needed with advanced auth)
$cfgServers[1]['user'] = 'root';           // MySQL user (only needed with basic auth)
$cfgServers[1]['password'] = '';         // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = '';                 // If set to a db-name, only this db is accessible
$cfgServers[1]['verbose'] = '';                 // Verbose name for this host - leave blank to show the hostname

解决方案 »

  1.   

    什么身份认证菜单?看看我的,可能有所帮助。
    <?php
    /* $Id: config.inc.php3,v 1.18 1999/04/13 14:01:45 dave Exp $ */// The $cfgServers array starts with $cfgServers[1].  Do not use $cfgServers[0].
    // You can disable a server config entry by setting host to ''.
    $cfgServers[1]['host'] = 'localhost';
    $cfgServers[1]['port'] = ''; // Leave blank for default port
    $cfgServers[1]['adv_auth'] = false;
    $cfgServers[1]['stduser'] = '';
    $cfgServers[1]['stdpass'] = '';
    $cfgServers[1]['user'] = 'rovoboy';
    $cfgServers[1]['password'] = 'qwer';
    $cfgServers[1]['only_db'] = ''; // if set to a db-name, only this db is accessible