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?