I am getting this error message intermittently when i am running GetRelatedKeywords.php.
The Error Message is:
"Failed to get authToken. Reason: Failed to connect to 2607:f8b0:4007:801::1010: Network is unreachable"
Can anyone help me out?
curl_setopt( $handle, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
If you still have this problem,buzz me tomorrow (28th August) in Skype between 14.00 and 17.00 MSK. I'll try to save your time and nerves and help to solve this strange problem.
Regards,
Evgeniy.
$this->curlUtils->SetOpt($ch, CURLOPT_POSTFIELDS, $postVars);
if (defined('CURLOPT_IPRESOLVE') && defined('CURL_IPRESOLVE_V4')) {
$this->curlUtils->SetOpt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
} else {
$hostInfo = parse_url($this->server);
if (!empty($hostInfo['host'])) {
$this->curlUtils->SetOpt($ch, CURLOPT_URL, str_replace($hostInfo['host'], '74.125.143.84', $postUrl));$this->curlUtils->SetOpt($ch, CURLOPT_HTTPHEADER, array('Host: ' . $hostInfo['host']));
}
}