PHP simplexml_load_file: File URL problem
I'm trying to read an rss feed with simplexmlloadfile(). But on my Linode server (not with my local server) there is a problem with URL scheme.
If I try this as the source file: "
As I said there is no problem with both URLs on my development server. What could be the problem?
3 Replies
@Guspaz:
I'm not sure if
http://www.domain.com/?feed=rss is technically a valid URL (even if it works). Try specifying the filename:
http://www.domain.com/whatever.php?feed=rss
RFC 3986 says it's cool… //
What does