nitromaster Posted February 21, 2009 Share Posted February 21, 2009 Tearing my head out over this http://validator.w3.org/feed/check.cgi?url=www.mybebostuff.com%2Ffeeds%2Fthelonelyisland.xml Basically seems like there's a problem with this line <media:player url="http://www.youtube.com/watch?v=eh2ld_Vt_eQ><![CDATA[<embed src="http://www.youtube.com/v/eh2ld_Vt_eQ&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed>]]></media:player> Any idea why it's not valid? In a much older media rss file I have <media:player url="http://www.break.com/index/atv-jumps-into-tree.html"><![CDATA[<embed src="http://embed.break.com/NTc4NzA1" type="application/x-shockwave-flash" wmode="transparent" width="464" height="392" ></embed>]]></media:player> And that's valid. Any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/146298-solved-media-rss-feed-validation-errors/ Share on other sites More sharing options...
Mchl Posted February 22, 2009 Share Posted February 22, 2009 You have opened <![CDATA[ in <media:description>, that's never closed. Now it get's to <media:player> where there's another <![CDATA[ now with closing tag. So what the parser sees is <media:description><![CDATA[ .... ]]></media:player> obviously mismatched tag Quote Link to comment https://forums.phpfreaks.com/topic/146298-solved-media-rss-feed-validation-errors/#findComment-768078 Share on other sites More sharing options...
nitromaster Posted February 22, 2009 Author Share Posted February 22, 2009 Got you =] Thanks *marked solved* Quote Link to comment https://forums.phpfreaks.com/topic/146298-solved-media-rss-feed-validation-errors/#findComment-768079 Share on other sites More sharing options...
Mchl Posted February 22, 2009 Share Posted February 22, 2009 Next time use 'view source' in firefox. It highlights XML markup, so it's easy to spot such mistakes. Cheers Quote Link to comment https://forums.phpfreaks.com/topic/146298-solved-media-rss-feed-validation-errors/#findComment-768083 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.