H hamzuz Newbie Joined Dec 2, 2009 Messages 11 Reaction score 0 Aug 19, 2010 #1 Is it possible to use CURL with different ips and let it capture all the data from multiply redirections?
Is it possible to use CURL with different ips and let it capture all the data from multiply redirections?
chevet Junior Member Joined Jun 23, 2010 Messages 172 Reaction score 51 Aug 21, 2010 #2 yes, it is possible $proxy = '211.138.124.197:80'; curl_setopt($ch, CURLOPT_PROXY, $proxy); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0); curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
yes, it is possible $proxy = '211.138.124.197:80'; curl_setopt($ch, CURLOPT_PROXY, $proxy); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0); curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
H hamzuz Newbie Joined Dec 2, 2009 Messages 11 Reaction score 0 Aug 22, 2010 #3 10x, I'll check it out later.
S Sammatar.OS Newbie Joined Aug 22, 2010 Messages 1 Reaction score 0 Aug 22, 2010 #4 chevet said: yes, it is possible $proxy = '211.138.124.197:80'; curl_setopt($ch, CURLOPT_PROXY, $proxy); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0); curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); Click to expand... Thank you.
chevet said: yes, it is possible $proxy = '211.138.124.197:80'; curl_setopt($ch, CURLOPT_PROXY, $proxy); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0); curl_setopt($ch, CURLOPY_PROXYAUTH, CARLAUTH_BASIC); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); Click to expand... Thank you.