I'm trying to host an RSS feed for iTunes and I keep getting a mismatched tag error
Ubuntu // Apache
feed url is: http://fourteenthrees.com/podcasts/feed.xml
my code is:
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>MUSIC 4 COMMITTING CRIMES</title>
<link>http://www.fourteenthrees.com</link>
<language>en-us</language>
<copyright>℗ & © 2019 Fourteen Threes</copyright>
<itunes:subtitle>Music you listen to while committing crime.</itunes:subtitle>
<itunes:author>Fourteen Threes</itunes:author>
<itunes:summary>The soundtrack to all your crimes</itunes:summary>
<description>Every episode is the soundtrack to a different crime.</description>
<itunes:owner>
<itunes:email>editor@fourteenthrees.com</itunes:email>
</itunes:owner>
<itunes:image href="http://fourteenthrees.com/images/podlogo.jpg"/>
<itunes:category text="Society & Culture" />
<itunes:category text="Arts" />
<itunes:category text="News & Politics" />
<itunes:explicit>yes</itunes:explicit>
<item>
<title>00 - TEST</title>
<itunes:subtitle>DIRTROID:the girl dies</itunes:subtitle>
<itunes:summary><![CDATA[Dirty Harry v Metroid.]]></itunes:summary>
<itunes:image href="http://fourteenthrees.com/images/podlogo.jpg"/>
<enclosure length="8727310" type="audio/x-m4a" url="http://fourteenthrees.com/podcasts/FT-01.mp3”/>
<pubDate>Thu, 12 Sep 2019 16:00:00 PDT</pubDate>
<itunes:duration>22:04</itunes:duration>
<itunes:explicit>yes</itunes:explicit>
</item>
</channel>
</rss>
This is the error from the Apple Recommended feed validator;
Sorry,This feed does not validate. line 29, column 13: XML parsing error: :29:13: not well-formed (invalid token) Thu, 12 Sep 2019 16:00:00 PDT
I can't see what I did wrong, could use another set of eyes, thanks.