发新话题
打印

[转载] 完整安装phpmyadmin

完整安装phpmyadmin

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
本帖最近评分记录
秋爱的技术博客有时候会推荐好东西出来哦~

TOP

收录到置顶帖。

TOP

可是我提示的问题却是#1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client请问怎么解决

TOP

.....楼上去帖子里面好好找找...在另一个帖子里面吧...你的配置错了.
秋爱的技术博客有时候会推荐好东西出来哦~

TOP

PHPMyAdmin的问题

输入127.0.0.1/phpMyAdmin后,出现#1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client,然后我按照你上面所说的方法:在 MySQL Command Line Client 下运行:
set password for root@localhost=old_password('123');
123是自己的密码.
在输入127.0.0.1/phpMyAdmin,出现这样的问题:#1045 - Access denied for user 'pmausr'@'localhost' (using password: YES)
请问怎样解决?
计算机本身不是目的,只是工具。

TOP

出现#1045 - Access denied for user 'root'@'localhost' (using password: NO) 怎么办?

TOP

发新话题