Install phpmyadmin:
1.Create phpmyadmin directory in web server root
2.Copy the phpmyadmin source to the the created directory
3.Copy config.sample.inc.php to the same folder with the file name: config.inc.php
4.Config phpmyadmin by modifying the config.inc.php
a.blowfish_secret
//Modify
$cfg['blowfish_secret'] =
''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
//as
$cfg['blowfish_secret'] =
'test'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
b.Access mysql account information
//Add the following lines
$cfg['Servers'][$i]['user'] =
'root';
$cfg['Servers'][$i]['password'] =
'yourpasswordhere'; // use here your password

5.On IE access the path :
http://localhost/phpmyadmin/, then the phpmyadmin will display
Error:
If you see the exception:#1045 - Access denied for user 'pmausr'@'localhost' (using password: YES)
Just do the following:
把
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] =
'pmausr';
$cfg['Servers'][$i]['controlpass'] =
'pmapass';
修改为
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] =
'root';
$cfg['Servers'][$i]['controlpass'] =
'rootpassword';
Then access the
http://localhost/phpmyadmin/ again.
至于翻译..有能人的话就翻译了帖出来..反正这点英文是个玩
电脑的就会.要是这个都看不懂.建议去买本计算机英语啃一下.
另外.有问题就去下面这个帖子找找..再没有就发个帖子出来..
http://bbs.cfan.com.cn/thread-526623-1-3.html