WordPress 1.5.1 RSS Feed的一个bug
Thursday, May 12th, 2005 | WordPress
WordPress1.5.1发布后,不少人升级后都有一些小问题,像部分插件不兼容无法使用,设为Private的文章无法正常隐藏等等,不过更大的bug在于升级到1.5.1后,WordPress的RSS Feed会出错(via)。
问题表现为:Feed不会输出本该输出的全部文章,而只会显示你当前新撰写的文章,而过了24小时后,Feed则会变为空白,没有任何的文章输出(ps.好像使用Feedburner烧过的feed没有问题)。子游提到1.5.1升级后又出了新的更新包。不过我今天重新下载升级后,这个bug还没有修复。
解决办法:
将根目录下wp-blog-header.php中的
if ( ($client_last_modified && $client_etag) ?
((strtotime($client_last_modified) >= strtotime($wp_last_modified)) && ($client_etag == $wp_etag)) :
((strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag)) ) {
if ( preg_match(’/cgi/’,php_sapi_name()) ) {
header(’Status: 304 Not Modified’);
echo “\r\n\r\n”;
替换为
if ( ($client_last_modified && $client_etag) ?
((strtotime($client_last_modified) >= strtotime($wp_last_modified)) && ($client_etag == $wp_etag)) :
(($client_last_modified && strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag)) ) {
if ( preg_match(’/cgi/’,php_sapi_name()) ) {
header(’Status: 304 Not Modified’);
echo “\r\n\r\n”;
重新上传到服务器上就可以了,看来以后还是不要太早尝鲜做小白鼠的好。
Update:发现William更早就提出了这个问题和修改的办法。
1 Comment to WordPress 1.5.1 RSS Feed的一个bug
[...] !显示不出下章内容了,哎,真的好失败啊~以后不敢盲目升级了! WordPress 1.5.1 RSS Feed的一个bug
永久地址http://foreverrj.vicp.net/ [...]
Leave a comment
Search
Google Friend Connect
My Lifestream
- 和久不见面的大学同学小聚会的一个好处是知道了很多当年的小秘密 July 1, 2009
- 百度在调整搜索引擎? 为什么搜索首页除了几条推广内容外,另外还显示了10条自然搜索结果 June 29, 2009
- Tangos 想读众声喧哗 June 29, 2009
- 40+ Essential Front End Web Developer Cheat Sheets | tripwire magazine June 28, 2009
- 中国公民日历(Google Calendar) June 27, 2009
- 在宁夏扶贫与环境改造中心听了一帮一助学计划的介绍,挺有意思的项目 June 22, 2009
- 前往机场去宁夏,第一次去宁夏 June 22, 2009
- 联邦金考的版权管理好严啊,我去复印一本书中的不到20页内容都被拒之门外 June 22, 2009
- Tangos 对最好的纪念是继续创作活动感兴趣 June 22, 2009
- Tangos 想读未来是湿的 June 22, 2009
My Del.icio.us
- 40+ Essential Front End Web Developer Cheat Sheets | tripwire magazineweb前端开发速查手册
- Web表单设计指南:眼动跟踪研究基于eye tracking的web表单设计研究,很有启发性
- 10 Ways to Change the World Through Social Media
- 7 Questions Some Brands Are Asking About Twitter « Web Strategy by Jeremiah Owyang | Social Media, Web Marketing做Twitter营销的一些思考问题
- 阿里巴巴(中国)用户界面指南
- 戴尔CMO谈公司如何利用网络点燃品牌热情
- HOW TO: Survive a Social Media Revolthow to communicate in social media
- Speech Critique Examples对一些著名演讲的分析和评论
- Speech Analysis: Barack Obama's Inaugural Speech
- 案例:Zappos的社会化营销实践-Zappos@Twitter 2
May 25, 2005