Ben senaryoyu bitirmeye ve aniden libcurl çalışma durduruldu. Ben bağlanıyordu sunucu aşağı ya da bir şey olduğunu düşündüm, ama her zaman ben bağlanmaya çalışırsanız nerede ben aynı Siktiri hatayı alıyorum. Hatta benim kutu, aynı sonucu yeniden çalıştı. Şeyler kod parçacığını:
public function navigate(array $data)
{
$ch = curl_init();
// Setup cURL
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_INTERFACE, $data['ip']);
curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/cookies.jar");
curl_setopt($ch, CURLOPT_COOKIEJAR, "/tmp/cookies.jar");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $data['agent']);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Visit homepage
curl_setopt($ch, CURLOPT_URL, "SOMEWEBSITEHERE, MAKES NO DIFFERENCE");
$page= curl_exec($ch);
var_dump($page, curl_error($ch), curl_errno($ch));
}
Yukarıdaki var_dump () (URL olarak www.yahoo.com) ile bu çıktıyı üretecektir:
bool(false)
string(51) "Failed to connect to 69.147.76.15: Unknown error 22"
int(7)
Login failed!
Ben bile wireshark ile bağlantısı koklama çalıştı, cURL bile bir bağlantı isteği sorun değil; DNS isteği sadece.
Şu anda clueless değilim.
Gerçekten bu bir el seviniriz.
Teşekkürler.