解决方法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
-------------------------------------------
用此方法解决了~
