I have a static xml file: it’s a podcast generated by one of those xml generator programs that is primarily subscribed to via iTunes. The feed is in a folder called “podcast” on the server. In the xml file itself I replaced
<?xml version="1.0" encoding="utf-8"?></code>
with
<?php
header("Content-Type:text/xml");
echo '<?xml version="1.0" encoding="utf-8"?'.">r";
?>
I also added
AddType application/x-httpd-php .xml .rdf
to the top of my .htaccess file at the root of my server.
And then… nothing. The Feeds pane registers nothing. It doesn’t list the feed as being present and lists no subscribers, ever (I know there are many thousands for a fact).
Anybody have any idea what’s going wrong?