By 赵峰 on 2006, December 1, 10:03 AM
今天官方发布了IE7.0简体中文正式版,不过在微软中国还没有放上,应该在这两天了吧!
官方下载地址:http://download.microsoft.com/download/4/1/8/418981A4-6EF9-4DE6-BEFC-1A53E886CB62/ie7-windowsxp-x86-chs.exe
附验证方法:
1:下载完毕后,双击安装文件,如图,至验证页面时,点验证!(当然通过不了,这样做是为了让C:\Documents and Settings\All Users\Application Data\Windows Genuine Advantage\data 路径上产生一个 data.dat 文件!)不要退出安装保留此页!
2:找到路径C:\Documents and Settings\All Users\Application Data\Windows Genuine Advantage\data 打开我的电脑,复制上面路径到地址栏,回车!找到data.dat 文件,删除它!
3:这个是关键,请仔细看好,如果你是LAN上网,请拔掉你的网线,如果是ADSL上网,那就关掉ADSL猫!并确认,屏幕右下角连接已处于断开的状态!(连接图标上出现红叉) 这是关键一步,请仔细确认!
回到安装页面,再一次验证!会很顺利通过的,等上两分钟,偷着乐吧
试试吧!
» 阅读全文
Tags:资源下载, 学习资料 | 知识 | Comments:0
| Read:1841
By 赵峰 on 2006, November 30, 4:13 PM
世道变了,流氓软件创使人周鸿祎离职,推出安全卫士360手刃自己高价卖给YAHOO的3721,暴风影音也忘记了自己被华军停止下载的丑事,扯起了“绿色软件”的大旗……
新闻:
暴风影音联合10家下载站推绿色软件名单
声称:为进一步截断恶意软件传播渠道,给用户的机器和上网环境最切实的保护,暴风影音倡导推出《
装机必备绿色软件名单》。
那到底什么叫“绿色软件”?
» 阅读全文
Tags:资源下载 | 精品收藏 | Comments:0
| Read:1329
By 赵峰 on 2006, November 24, 9:51 AM
月黑风高,早春的夜晚还是有一点寒冷。
张二舟最后吸了一口烟屁股,丢到地上踩熄,回头给伙计们打了个眼色。七个人扛起家伙,朝封土堆上走去。
张二舟是老地仙了,零二年中专毕业后,一直找不到工作,后来在网吧里拜了个师傅,就入了这一行,一来一去也混了四年,大小事务学的差不多了,就自立门户,收了几个半大不小的徒弟,开始单干,这几年混的不好不坏,逐渐的也感觉到世态炎凉起来。
» 阅读全文
Tags:搞笑 | 搞笑 | Comments:0
| Read:1343
By 赵峰 on 2006, November 3, 11:06 AM
1、div+css 中做的页面,在IE中是居中的,在火狐是在左边。
解决办法:更改#outmain的样式,加入margin-left:auto;margin-right:auto;
2、FLASH背景透明
解决办法:在ie中实现flash背景透明很简单,加这样一个值
<param name="wmode" value="transparent">
在Mozilla,Firefox浏览器中起作用的是这个标签 <embed></embed>
那这样,在<embed>标签内加入属性 wmode="transparent" 就可以实现flash背景透明。
» 阅读全文
Tags:点滴记录 | 知识 | Comments:0
| Read:2109
By 赵峰 on 2006, November 3, 10:17 AM
Tags:记忆 | 人生轨道 | Comments:0
| Read:2127
By 赵峰 on 2006, October 21, 1:50 PM
很耐玩的红色警戒的扩展任务!
============================================================
原作者的联系方式:
E-mail: kingwisezhe@263.net
电话:010-68942742
来信请寄:北京理工大学9120004班(王喆收)
邮编:100081
============================================================
使用说明:只要把这全部文件放在红警的根文件夹(如E:\ra2\)里,然后运行游戏,选新任务里的苏军就行了。
任务背景:台湾始终不肯回归大陆,在公元20XX年,借助美、日的资助竟公然宣布独立。中华民族岂容分裂!中国主权岂容丧失!我们承诺过“决不放弃使用武力!”,党中央毅然决定:"武力收复台湾!"现命你为三军总司令,领导人民解放军去解放台湾。
» 阅读全文
Tags:资源下载, 玩游戏 | 玩游戏 | Comments:0
| Read:5170
By 赵峰 on 2006, October 19, 10:40 AM
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('密码');
» 阅读全文
Tags: | 知识 | Comments:0
| Read:1538
By 赵峰 on 2006, October 12, 3:18 PM
国庆没有回家,把照片和DV刻了两张盘。
这年头,小孩子真是幸福啊!
FLASH照片
WMV视频
更多照片请看 这里
» 阅读全文
Tags:育儿 | 幼儿教育 | Comments:0
| Read:1967