Trouble with first channel

Hello all, I’m depressingly bad at this and don’t have anyone to ask personally. I am having an issue with my first channel, where the images won’t load and the channel (when selected) no longer enters the channel to view the categories. I have a pastebin of the debug code http://pastebin.com/nRMaxHn6 but I am unsure of what else you need to help. I really appreciate any assistance

“Can’t parse feed” means there is an error in the XML.
Go into the ‘category.brs’ file if you are using that - do a search for “can’t parse feed” - and look at what causes that error message in your app.
(I looked at your linked xml file and it validates fine as far as the xml is concerned - no ampersands, less than or greater than signs, no cyrillic characters, etc)

The debugger output is showing a syntax error on the line


for each category in categories.kids

And the variable dump just below that shows that the categories variable is invalid.

–Mark

Thanks guys! I actually tested the xml in a browser before reading your replies, saw the errors in them from that, and have since gotten it working but wasn’t able to post on here. Spot on advice, and helped me better read the debugger. Thanks a ton to both of you.