The first error is because you left something essential out of your metadata, you need the title, author and language.
The second error most likely means you have an anchor tag with both id and name attributes (e.g. <a name="foo" id="foo>). Delete the name attribute, it's deprecated in xhtml on <a> tags and you should only use id.
|