我在使用 simplepie 1.3.1 的主机上收到此错误:
A feed could not be found at http://pop-music.ir/feed. A feed with an invalid mime type may fall victim to this error, or SimplePie was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.
但在 localhost(xampp) 我可以查看 rss
更新(2013/7/22 - 1:24 PM):
我已经上传了完整的 simplepie 文件。下载我的源代码
在这个文件中\simplepie\demo\1.php
,我设置了这个代码:
<?php
include_once('../autoloader.php');
include_once('../idn/idna_convert.class.php');
$feed = new SimplePie();
$feed->set_feed_url('http://pop-music.ir/feed');
$feed->force_feed(true);
$feed->init();
$feed->handle_content_type();
echo $feed->get_title();
?>
但是在运行时没有显示错误并且没有检查RSS!
当我http://pop-music.ir/feed
在脚本上检查这样的 url rss 时,在 demo simplepie 中检查此 url 时出现错误 bu(查看演示此 url)我可以查看 rss !!!!!!帮我 :(