I just started a blog with Serendipity and everything is working fine except the rss feed
At http://www.blogstreet.com/rssdiscovery.html I get Invalid RSS feed.
Can somebody take a look and help me get it fixed
http://www.seo-blog.goodseo-badseo.com/
http://www.seo-blog.goodseo-badseo.com/feeds/index.rss1
Thanks in advance
RSS problem
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: RSS problem
Hi!
You will need to talk to the guys at blogstreet.
Your RSS-Feed as well the <link> metadata for autodetection is correct:
http://www.feedvalidator.org/check.cgi? ... index.rss2
I see no issues with your RSS2.0 feed...you could try to switch "XHTML 1.1 compliance" to "on" in your s9y configuration, maybe blogstree needs this...
Regards,
Garvin
You will need to talk to the guys at blogstreet.
Your RSS-Feed as well the <link> metadata for autodetection is correct:
http://www.feedvalidator.org/check.cgi? ... index.rss2
I see no issues with your RSS2.0 feed...you could try to switch "XHTML 1.1 compliance" to "on" in your s9y configuration, maybe blogstree needs this...
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Ah okay.
Yes, the RSS1 feed seems to have issues. Try this patch by editing your rss.php file:
But RSS 1.0 is really somewhat dead and not commonly used; I'd suggest you to use the Atom feed or RSS2 feed where possible. RSS2.0 is the default feed, in any case, for the meta element of serendipity.
Regards,
Garvin
Yes, the RSS1 feed seems to have issues. Try this patch by editing your rss.php file:
Code: Select all
Index: rss.php
===================================================================
--- rss.php (revision 68)
+++ rss.php (working copy)
@@ -155,8 +155,9 @@
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
- xmlns:wfw="http://wellformedweb.org/CommentAPI/">
-<channel rdf:about="{$serendipity['baseURL']}rss.php?version=1.0">
+ xmlns:wfw="http://wellformedweb.org/CommentAPI/"
+ xmlns="http://my.netscape.com/rdf/simple/0.9/">
+<channel>
<title>$title</title>
<link>{$serendipity['baseURL']}</link>
<description>$description</description>
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/