I'm getting the following error when attempting perform a file_get_contents
on a specific URL: http://lolking.net/champions/. I've had no problems performing file_get_contents
on any other web page I've tried.
The error is:
Warning: file_get_contents(http://lolking.net/champions) [function.file-get-contents]: failed to open stream: HTTP request failed!
I think that the page is purposefully blocking the request I'm trying to make. I've also tried using cURL and faking a user agent, but neither of these have worked.
Is there anything else I can do to try to grab information from the aforementioned URL?