安裝APPSERV

五月 4th, 2005

真是夠了,為了一個phpMyAdmin,我安裝了不知道多少次,結果原因出在MySql的加密問題,難怪不管如何設定都無法登入,害我以為那裡做錯,到最後爬了幾篇文章才發現。
————————————————————————
今天爬的文章
[教學]phpMyAdmin 登入

[教學]phpMyAdmin 建立 MySQL 管理者

[問題] phpMyAdmin始終無法使用

————————————————————————
設定phpMyAdmin
打開 phpMyAdmin/config.inc.php

  1. 找到
  2.   $cfg['PmaAbsoluteUri'] = ''
  3. 改為
  4.   $cfg['PmaAbsoluteUri'] = 'http://IP/phpMyAdmin/'
  5.  
  6. 找到
  7.   $cfg['Servers'][$i]['controluser'] = '' // MySQL control user settings
  8.   $cfg['Servers'][$i]['controlpass'] = '' // access to the "mysql/user"
  9.   $cfg['Servers'][$i]['auth_type'] = 'config' // Authentication method (config, http or cookie based)?
  10.   $cfg['Servers'][$i]['user'] = 'root'
  11. 改為
  12.   $cfg['Servers'][$i]['controluser'] = '管理者帳號; // MySQL control user settings
  13.   $cfg['Servers'][$i]['controlpass'] = '管理者密碼' // access to the "mysql/user"
  14.   $cfg['Servers'][$i]['auth_type'] = 'http' ; // Authentication method (config, http or cookie based)?
  15.   $cfg['Servers'][$i]['user'] = '' ;

Entry Filed under: 微沙發

Leave a Comment

Required

Required, hidden

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