Failed to parse RSS feed.”Invalid XML. Error on line 114

Asked By 0 points N/A Posted on -
qa-featured

 

 


Failed to parse RSS feed."Invalid XML. Error on line 114.The element type "meta" must be terminated by the matching end-tag"</meta>"."

How to fix this error?

Error on line 114.The element type "meta
SHARE
Best Answer by Drake Vivian
Best Answer
Best Answer
Answered By 30 points N/A #175966

Failed to parse RSS feed.”Invalid XML. Error on line 114

qa-featured

Hi there Isaac A Evans,

The error says it all – you have some unclosed syntaxes in your code and it cannot be parsed like that.

To make things working, open the problematic XML file using a text editor or whatever you're using to write your code. Scroll down until you are on the line 114. Once you've found it, at the end of the line type </meta> to close the meta syntax. Save the file, reupload it and everything should be working.

Best regards,
Drake Vivian

Answered By 60 points N/A #175967

Failed to parse RSS feed.”Invalid XML. Error on line 114

qa-featured

Hi Issac,

There could be two reason for this error. Please see below :

1. As output you are using outer HTML syntax, so in HTML you must use self closing meta tag, you cannot use an end </meta> in HTML.

2.Another reason could be very simple if you are using output as <xsl:output method="xml"/> , then you might not closed the meta tag in line no 114 of XML, just open the XML and close the meta tag and save, It will work.

Thank you.

Related Questions