特点&应用:
- 适合制作API文档、介绍手册/说明文档、数据字典等;
- 免费开源;
- 基于thinkphp;
- 支持markdown语法;
- 支持多项目;
- 可免费使用官方在线版,也可部署在自己的服务器上使用
- 等等
足迹,留给未来的自己
现象:
1 |
mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords flag from your my.cnf file |
解决方法:
1 2 3 4 |
SET old_passwords =0; UPDATE mysql.user SET password =PASSWORD('testpass') WHERE user='testuser' limit 1; SELECT LENGTH(Password) FROM mysql.user WHERE user='testuser'; FLUSH PRIVILEGES; |
原文连接:http://hi.baidu.com/cheng7610/item/16abb4ec51f6d6f02a09a4c1