When I try to validate my sitemap, I get the following error:
Invalid per cvc-complex-type.1.2.4:
element {http://www.sitemaps.org/schemas/sitemap/0.9}:changefreq not allowed here (5) in element {http://www.sitemaps.org/schemas/sitemap/0.9}:url, expecting [{Wildcard: ##other, strict},$]:
If I manually adjust the xml file from:
<url>
<loc>http://www.mysite.com/</loc>
<lastmod>2009-06-12T06:12:05Z</lastmod>
<priority>1.0</priority>
<changefreq>monthly</changefreq>
</url>
to this:
<url>
<loc>http://www.mysite.com/</loc>
<lastmod>2009-06-12T06:12:05Z</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
it then validates.
Any ideas what I\'ve done wrong????? I\'m getting the same result on 2 separate sites on different hosts.