Hi all,
ok I've written a work around for the MIME-TYPE problem.
It's quick N Dirty but should work on all systems.
Just copy+patse the following code and save it in the /backend/ folder as 'rss-feed.php' or something
--start code--
Text Formatted Code
path to rdf file
$rss_xml_data = binarysafe_file_get_contents($_CONF['rdf_file']);
echo $rss_xml_data ;
function binarysafe_file_get_contents($filename) {
$fd = fopen("$filename", "rb");
$content = fread($fd, filesize($filename));
fclose($fd);
return $content;
}
?>