Curls and file_get_contents times out when loading a page

Posted by Joseph on Stack Overflow See other posts from Stack Overflow or by Joseph
Published on 2010-05-13T22:47:24Z Indexed on 2010/05/13 22:54 UTC
Read the original article Hit count: 188

Filed under:
|

Im trying to grab the content of this page(http://www.alluc.org/movies/watch-hot-tub-time-machine-2010-online/186214.html) using curl or file_get_contents but it doesnt work, it loads when i just open it in the browser, but not otherwise. Here are my settings for CURL:

            curl_setopt($ch1, CURLOPT_INTERFACE, "$use_proxy");
            curl_setopt($ch1, CURLOPT_URL, $url);
            curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1);
            curl_setopt($ch1, CURLOPT_REFERER, 'http://'.$domain);
            curl_setopt($ch1, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1");
            curl_setopt($ch1, CURLOPT_FOLLOWLOCATION, TRUE);
            echo curl_setopt($ch1, CURLOPT_HEADER, 1); 
            curl_setopt($ch1, CURLOPT_VERBOSE, true);

It works fine for other sites just not this one for some reason, any clue as to how to make it work ? Thanx.

Heres the info from curl_getinfo($ch1):

[url] => http://www.alluc.org/movies/watch-hot-tub-time-machine-2010-online/186214.html
[content_type] => 
[http_code] => 0
[header_size] => 0
[request_size] => 0
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0
[namelookup_time] => 0.002578
[connect_time] => 0
[pretransfer_time] => 0
[size_upload] => 0
[size_download] => 0
[speed_download] => 0
[speed_upload] => 0
[download_content_length] => -1
[upload_content_length] => -1
[starttransfer_time] => 0
[redirect_time] => 0

© Stack Overflow or respective owner

Related posts about curl

Related posts about timeout