$html = file_get_contents("https://www.[URL].com");
echo $html;
produces this in the error logs:
PHP Warning: file_get_contents(https://www.[URL].com) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error in /Applications/MAMP/htdocs/test.php on line 13";
However, the site works fine in a browser.
I tried using cURL as well. I don't get any errors in the log file, but $html
now echoes:
Server Error in '/' Application.
Object reference not set to an instance of an object....some more debugging info
Any ideas how to work around this?