安裝APPSERV
五月 4th, 2005
真是夠了,為了一個phpMyAdmin,我安裝了不知道多少次,結果原因出在MySql的加密問題,難怪不管如何設定都無法登入,害我以為那裡做錯,到最後爬了幾篇文章才發現。
————————————————————————
今天爬的文章
[教學]phpMyAdmin 登入
[教學]phpMyAdmin 建立 MySQL 管理者
[問題] phpMyAdmin始終無法使用
————————————————————————
設定phpMyAdmin
打開 phpMyAdmin/config.inc.php
- 找到
- $cfg['PmaAbsoluteUri'] = ''
- 改為
- $cfg['PmaAbsoluteUri'] = 'http://IP/phpMyAdmin/'
- 找到
- $cfg['Servers'][$i]['controluser'] = '' // MySQL control user settings
- $cfg['Servers'][$i]['controlpass'] = '' // access to the "mysql/user"
- $cfg['Servers'][$i]['auth_type'] = 'config' // Authentication method (config, http or cookie based)?
- $cfg['Servers'][$i]['user'] = 'root'
- 改為
- $cfg['Servers'][$i]['controluser'] = '管理者帳號; // MySQL control user settings
- $cfg['Servers'][$i]['controlpass'] = '管理者密碼' // access to the "mysql/user"
- $cfg['Servers'][$i]['auth_type'] = 'http' ; // Authentication method (config, http or cookie based)?
- $cfg['Servers'][$i]['user'] = '' ;
Entry Filed under: 微沙發
Leave a Comment
Some HTML allowed:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>
Trackback this post | Subscribe to the comments via RSS Feed