I’m trying to validate this sitemap file. When I validate it inside my IDE I get the error:
External resource http://www.sitemaps.org/schemas/sitemap/0.9 is not registered
I’ve also validated it using an online validator, which generates a multitude of errors. I’ve looked through the document, and can’t see anything wrong it.
I see two issues with your sitemap.
First – The value of
<lastmod>is invalid. In your time value, the schema is expecting the seconds. Also, the timezone designator is missing a colon.Example –
This:
<lastmod>2012-02-08T16:32+0000</lastmod>Should be:
<lastmod>2012-02-08T16:32:00+00:00</lastmod>Second – The position of
<lastmod>is incorrect. According to the schema, the order has to be:<loc>,<lastmod>,<changefreq>, and then<priority>.Example –
This:
Should be:
Here is a full copy of the fixed sitemap.xml: