digest, select
wordpress 2.0.6导致feedburner停工 5+

[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");
} $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); ?>
另外一种简单的解决方法:
创建一个叫做FeedBurner.php的文件并加入如下代码:
然后去feedburnner把feed指向你刚创建的那个FeedBurner.php。





2007.01.07 5:02 pm
我的论坛没有发现这个问题。
2007.01.07 5:12 pm
呵呵,没有最好,小心为妙。
2007.01.08 9:14 am
从一个开发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页面)
2007.01.09 11:19 pm
我草!终于上来一次,留言纪念~~
2007.01.09 11:23 pm
哈哈,终于见到maple了~