摘要:PHP - phpmyadmin 要求輸入使用者帳密,隱藏information_schema
預設,phpmyadmin 沒要求輸入帳密,
所以可以一下子看到所有的資料庫內容
查了一下,要修改一下config.inc.php
修改cfg['Servers'][$i]['auth_type'] = ''config';
改為
http或則cookie
http有點像windows認真的感覺。
cookie,則像登入頁面。
所以選擇cookie 比較好。
再來使用者進去後,都會看到information_schema資料庫
所以需要再加上
$cfg['Servers'[$i]['hide_db'] = 'information_schema';
隱藏information_schema資料庫。