I have some blogs on blogger and I'm actually trying this:
I want to read the bolgs' feed Rss from my website to display the latest posts on my main website..
Everything works fine on the Development intranet server.
But when i try to publish online the internet server doesn't load() the feeds.
code:
$doc = new DOMDocument();
if($doc->load( 'http://myblog.blogspot.com/feeds/posts/default?alt=rss' )){
//never enters here !!! but only on the online server
}
i'm thinking i have to fix some apache setting , such as when u want to screen scraping some web content, isn't it?
What should i fix?
Many thanks!