I want to get feeds from here http://laimoon.com/feed/jobs?search=female,arts&locations=2 If i directly browse this page in browser it show feed, also If i use this code in my local host which is on windows
$xml=simplexml_load_file("http://laimoon.com/feed/jobs?search=female,arts&locations=2");
print_r($file_contents);
OR
$file_contents = file_get_contents('http://laimoon.com/feed/jobs?search=female,arts&locations=2')
print_r($xml);
Both works fine
But if i use this code in my linux live server then it shows this error for file_get_contents()
Warning: file_get_contents(http://laimoon.com/feed/jobs?search=female,arts&locations=2): failed to open stream :HTTP request failed! HTTP/1.1 500 Internal Server Error
And this error for simplexml_load_file()
Warning: simplexml_load_file(http://laimoon.com/feed/jobs?search=female,arts&locations=2): failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error
Thanks in advance :)