如何將安裝的 phpmyadmin 設置為自動登陸!
(1)在根目錄找到 config.inc.php (根目錄)或者config.default.php(根目錄)再則:libraries\config.default.php (友情提示:由於版本不一樣可能涉及的文件不同,基本為這三個文件),
(2)打開config.inc.php 找到 $cfg['Servers'][$i]['auth_type'] 將 $cfg['Servers'][$i]['auth_type'] = 'cookie';中的 cookie 改成 http 或者 config 即 $cfg['Servers'][$i]['auth_type'] = 'http';或者 $cfg['Servers'][$i]['auth_type'] = 'config';
(3)然後在下面加上如下代碼:
$cfg['Servers'][$i]['user'] = 'root'; // 設置的mysql用戶名 $cfg['Servers'][$i]['password'] = '123'; // 設置的mysql密碼
保存即可。
如果想取消phpmyadmin自動登陸。只需把$cfg['Servers'][$i]['auth_type'] = 'http'; 改成$cfg['Servers'][$i]['auth_type'] = 'cookie';保存即可。