很耐玩的红色警戒的扩展任务!
============================================================
原作者的联系方式:
E-mail: kingwisezhe@263.net
电话:010-68942742
来信请寄:北京理工大学9120004班(王喆收)
邮编:100081
============================================================
使用说明:只要把这全部文件放在红警的根文件夹(如E:\ra2\)里,然后运行游戏,选新任务里的苏军就行了。
任务背景:台湾始终不肯回归大陆,在公元20XX年,借助美、日的资助竟公然宣布独立。中华民族岂容分裂!中国主权岂容丧失!我们承诺过“决不放弃使用武力!”,党中央毅然决定:"武力收复台湾!"现命你为三军总司令,领导人民解放军去解放台湾。
» 阅读全文
MYSQL 帮助:
A.2.3 Client does not support authentication protocol
MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. If you upgrade the server to 4.1, attempts to connect to it with an older client may fail with the following message:
shell> mysql
Client does not support authentication protocol requested
by server; consider upgrading MySQL client
To solve this problem, you should use one of the following approaches:
- Upgrade all client programs to use a 4.1.1 or newer client library.
- When connecting to the server with a pre-4.1 client program, use an account that still has a pre-4.1-style password.
- Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the
SET PASSWORD statement and the OLD_PASSWORD() function:
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
Alternatively, use UPDATE and FLUSH PRIVILEGES:
mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
-> WHERE Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;
Substitute the password you want to use for ``newpwd'' in the preceding examples. MySQL cannot tell you what the original password was, so you'll need to pick a new one.
- Tell the server to use the older password hashing algorithm:
- Start
mysqld with the --old-passwords option.
- Assign an old-format password to each account that has had its password updated to the longer 4.1 format. You can identify these accounts with the following query:
mysql> SELECT Host, User, Password FROM mysql.user
-> WHERE LENGTH(Password) > 16;
For each account record displayed by the query, use the Host and User values and assign a password using the OLD_PASSWORD() function and either SET PASSWORD or UPDATE, as described earlier.
For additional background on password hashing and authentication, see section 5.5.9 Password Hashing in MySQL 4.1.
例子:
SET PASSWORD FOR 用户名@localhost = OLD_PASSWORD('密码');
» 阅读全文
国庆没有回家,把照片和DV刻了两张盘。
这年头,小孩子真是幸福啊!
FLASH照片
WMV视频
更多照片请看 这里
» 阅读全文
blog停止更新有一年了,主要是因为新新生宝宝,没有观众也就没有动力。
一开始用的是雪人论坛,而后是O-blog,现在的Blog改自Sablog-X;用了一天时间,终于把所有数据都导入了,Access转MySQL、UBB,很麻烦。
单独买了域名,备了案,得做得象样些,不然丢人啊,呵呵。
» 阅读全文