Been getting the following error
XML Parsing Error: XML or text declaration not at start of entity
Location: http://www.mydomain.com/feed/
Line Number 4, Column 1:<?xml version="1.0" encoding="UTF-8"?>
^
I added:
$out = ob_get_contents();
$out = str_replace(array("\n", "\r", "\t", " "), "", $input);
ob_end_clean();
to feed-rss2.php without any results. working on the other options now...