Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm implementing a rolling curl which gives the error "connection time-out". The curl handlers to the same domain in the same script before the rolling curl go fine.

$options = array();
$rc = new RollingCurl("request_callback");
$rc->window_size = $rows;   // number of threads to run
for($i = 0; $i < $rows; $i++) {

$options[$i] = array(
CURLOPT_CONNECTTIMEOUT_MS           =>  600,
CURLOPT_TIMEOUT         => 6,
CURLOPT_USERAGENT           => $agent,
CURLOPT_COOKIEFILE          => $cookie, 
CURLOPT_COOKIEJAR           => $cookie,
CURLOPT_VERBOSE         => true,
CURLOPT_REFERER             => $REFERER2
 );
$request = new RollingCurlRequest($url, "POST", $POSTFIELDS1[$i], $headers,           $options[$i]);
$rc->add($request);
}
$rc->execute();

What on earth am I doing wrong?

share|improve this question
And what question is? – Sergey Oct 3 '12 at 16:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.