第十一章 PhpMyAdmin連線遠端mysql伺服器---連線openwrt 703N伺服器

XIANFANG發表於2014-10-24

//千萬不要在你原來的那個phpmyadmin資料夾上操作~~~要複製一個新的進行操作,這樣我們就可以同時使用本地和遠端

 

一、下載phpmyadmin到本地

我使用的是windows下的整合WAMP軟體phpstudy

二、修改libraries資料夾下的config.default.php檔案

1、查詢$cfg['PmaAbsoluteUri'] ,將其值設定為你本地的phpmyadmin路徑,例如$cfg['PmaAbsoluteUri'] = 'http://localhost:9096/192.168.2.1/';

2、查詢$cfg['Servers'][$i]['host'] , 將其值設定為你mysql資料庫地址,例如192.168.2.1

$cfg['Servers'][$i]['host'] = '192.168.2.1';

3、查詢$cfg['Servers'][$i]['user'] , 將其值設定為你mysql資料庫使用者名稱,例如abcd

$cfg['Servers'][$i]['user'] = '網上資料庫使用者名稱';

4、查詢$cfg['Servers'][$i]['password'] , 將其值設定為你mysql資料庫密碼,例如root

$cfg['Servers'][$i]['password'] ='網上資料庫密碼';

5、查詢 $cfg['Servers'][$i]['auth_type'] ,將其值設定為phpMyAdmin的登入方式

$cfg['Servers'][$i]['auth_type'] = 'cookie';

 

 

相關文章