I have a web site and am trying to produce an RSS feed for it for when things are changed. The following code is the RSS generated (from dreamweaver). Google Reader acknowledges it as a valid feed, but some other RSS feeders, such as Bloglines, do not recognise it as a valid feed. Any idea what I need to do to fix this?
The generated feed follows:
?xml version="1.0" ?>
- <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
- <channel>
<atom:link href="http://www.andyhayler.com/rss/restaurants.xml" rel="self" type="application/rss+xml" />
<title>Andy Hayler's Restaurant, Food and Hotel Guide</title>
<description>Free IT help and advice for small to medium sized businesses, with simple, easy to follow advice, clear explanations, answers to IT problems, how-to videos</description>
<link>http://www.andyhayler.com/default.asp</link>
- <item>
<title>1880</title>
<description>Smart hotel dining with lovely bread.</description>
<link>http://www.andyhayler.com/show_restaurant.asp?id=10</link>
<guid isPermaLink="true">http://www.andyhayler.com/show_restaurant.asp?id=10</guid>
</item>
- <item>
<title>La Trompette</title>
<description>Highly successful, consistent bistro.</description>
<link>http://www.andyhayler.com/show_restaurant.asp?id=19</link>
<guid isPermaLink="true">http://www.andyhayler.com/show_restaurant.asp?id=19</guid>
</item>
- <item>
<title>Petersham Nurseries</title>
<description>Simple cooking in an al fresco setting at sky high prices</description>
<link>http://www.andyhayler.com/show_restaurant.asp?id=508</link>
<guid isPermaLink="true">http://www.andyhayler.com/show_restaurant.asp?id=508</guid>
</item>
</item>
</channel>
</rss>
Any help would be appreciated.
Andy