....(略) * If the auto-detection code does work properly, you can set to TRUE the * $cfg['PmaAbsoluteUri_DisableWarning'] variable below. */ $cfg['PmaAbsoluteUri'] = 'http://140.128.51.xxx/phpMyAdmin/'; (設定 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;
/** * Server(s) configuration */ $i = 0; ...(略)..................... $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)? (認證模式)
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user $cfg['Servers'][$i]['password'] = '密碼'; // MySQL password (only needed // with 'config' auth_type)
...(略)
|
留言列表