- 性别
- 保密
- 个人主页
- 自我介绍
- [url=http://www.superlin.com]林..记[/url]
- 在线时间
- 200 小时
- 最后登录
- 2009-11-19
- 帖子
- 56
- 记录
- 0
- 好友
- 0
- 主题
- 6
- 精华
- 0
- 注册时间
- 2006-12-7
- 阅读权限
- 30
- 积分
- 500
- UID
- 6614
  
- 金钱
- 31 WPB
|
发表于 2007-8-21 21:09:51
|显示全部楼层
解决方法2:
QUOTE:
Try this. Get your original gettext.php file, then find entry:
if ($magic == ($MAGIC1 & 0xFFFFFFFF)) { // to make sure it works for 64-bit platforms
$this->BYTEORDER = 0;
} elseif ($magic == ($MAGIC2 & 0xFFFFFFFF)) {
Replace by:
if ($magic == $MAGIC1) {
$this->BYTEORDER = 0;
} elseif ($magic == $MAGIC2) {
The solution was described there: http://wordpress.dk/forum/topic/19
It is working for me. WordPress 2.1.3 php 5.2.1
-------------------------------------------
用此方法解决了~ |
|