|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-11-13 21:18 UTC] iliaa@php.net
[2006-11-14 20:00 UTC] edink@php.net
[2006-12-15 18:13 UTC] type-v at mail dot ru
[2007-01-07 18:50 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 06:00:01 2025 UTC |
Description: ------------ curl_multi_exec() doesn't work with socks5 proxy. It was said that it would be fixed in version 7.16.0. But there is only 7.14 available in latest cvs of php5 and php6. When 7.16 will be available for download ? Reproduce code: --------------- $conn[$i]=curl_init("http://www.site.com/"); curl_setopt($conn[$i],CURLOPT_RETURNTRANSFER,true); curl_setopt($conn[$i],CURLOPT_HEADER,false); curl_setopt($conn[$i],CURLOPT_PROXY,$proxy); curl_setopt($conn[$i],CURLOPT_PROXYTYPE,CURLPROXY_SOCKS5); curl_setopt($conn[$i],CURLOPT_CONNECTTIMEOUT,10); curl_setopt($conn[$i],CURLOPT_TIMEOUT,10); curl_setopt($conn[$i],CURLOPT_NOSIGNAL,true); curl_setopt($conn[$i],CURLOPT_FOLLOWLOCATION,true); Expected result: ---------------- All is ok. Actual result: -------------- Curl error on handle 0: Send failure: Socket is not connected Curl error on handle 1: Send failure: Socket is not connected And so on.