digest, select

skyreal / 2007.01.07 / 4:34 pm

wordpress 2.0.6导致feedburner停工 5+

feedburner wordpress rss feed xml php

[pic via]

在升级到wordpress 2.0.6之后,你的feedburner有可能会给出“invalid xml”(无效的xml)信息,并导致你的feed无法工作。
解决方法:

打开/wp-includes/functions.php 并查找如下代码:
if ( substr(php_sapi_name(), 0, 3) == ‘cgi’ )
@header("HTTP/1.1 $header $text");
else
@header("Status: $header $text");
}


把上面的代码替换成:


// if ( substr(php_sapi_name(), 0, 3) == ‘cgi’ )

@header("HTTP/1.1 $header $text");

// else

// @header("Status: $header $text");

}


另外一种简单的解决方法:
创建一个叫做FeedBurner.php的文件并加入如下代码:

$uri="http://neosmart.net/blog/feed/"; //Replace this URI with the URI to *your* feed!!

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $uri);

curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

echo curl_exec($ch);

$status = curl_close($ch);

?>
然后去feedburnner把feed指向你刚创建的那个FeedBurner.php。



链接 | 来源

本文有 5 篇评论

  1. 1 David Pan David Pan 说 :
    2007.01.07 5:02 pm
    avatar

    我的论坛没有发现这个问题。

  2. 2 skyreal skyreal 说 :
    2007.01.07 5:12 pm
    avatar

    呵呵,没有最好,小心为妙。

  3. 3 barry barry 说 :
    2007.01.08 9:14 am
    avatar

    从一个开发wp的blog上看到的
    Note that this doesn’t prevent FeedBurner (or anyone else) from fetching your feed 100% of the time. The issue only arises with certain RSS consumers and only on certain servers, and only when the feed attempts to return a 304 Not Modified header. So with FeedBurner, for instance, one fetch attempt may trigger it, but the next will be fine.

    http://anonymouse.org/cgi-bin/anon-www.cgi/http://markjaquith.wordpress.com/2007/01/06/wordpress-206-feedburner-issue-and-fix/
    我好象也没有这个问题,但是还是下载了为秒(作者blog上提供了新的function页面)

  4. 4 maple maple 说 :
    2007.01.09 11:19 pm
    avatar

    我草!终于上来一次,留言纪念~~

  5. 5 sein sein 说 :
    2007.01.09 11:23 pm
    avatar

    哈哈,终于见到maple了~

发表你的意见