Jump to content

PHP Curl Proxy Problem


afimafis

Recommended Posts

Hello,

 

hello i need use curl with proxy. but i get "undefined variable offset 1" error . here is the standart code i use.

please help me about it

 

thanks

 

 

curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, $header); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_PROXY, $proxy); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch, CURLOPT_REFERER, $referer); curl_setopt($ch, CURLOPT_USERAGENT, $agent);

Link to comment
Share on other sites

 

jesirose thanks for reply :)

i am sure that proxy works well. but i guess problem is related curl proxy settings. codes are standart i used.

i will be very appreciated, if u give me any clues

 

thanks

 

Post the entire error, the relevant code (ie, what is $proxy) and use code tags next time.

Link to comment
Share on other sites

sorry  :)

 

 

 

    //## Init cURL

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E; .NET CLR 1.1.4322)");

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_setopt($ch, CURLOPT_PROXY, 202.182.124.12:3128);

    curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);

    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 

    curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");

    curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txtt");   

 

    curl_setopt($ch, CURLOPT_URL, "https:..........................");  $page = curl_exec($ch);

print_r($page);

Link to comment
Share on other sites

i will very happy, if u help me  :-\

 

 

sorry i forgot to add quatoes. but i am sure that it works on web browser. no errror gottten

This makes me think of some weird combination of quotes and potatoes. Quoted potatoes guys.

Link to comment
Share on other sites

Works for me.

$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E; .NET CLR 1.1.4322)");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_PROXY, "202.182.124.12:3128");
// curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txtt");

curl_setopt($ch, CURLOPT_URL, "https://www.google.com");  
$page = curl_exec($ch);
echo $page;
echo curl_error($ch);

What error do you get now?

Link to comment
Share on other sites

i tested . works well for me. but i changed proxies. %90 of them gets this error

216.155.139.115:3128

117.27.139.17:80

 

i tested these proxies 5 minutes ago. they are level1 proxies

 

 

 

"Received HTTP code 403 from proxy after CONNECT"

 

 

 

Works for me.

$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E; .NET CLR 1.1.4322)");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_PROXY, "202.182.124.12:3128");
// curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txtt");

curl_setopt($ch, CURLOPT_URL, "https://www.google.com");  
$page = curl_exec($ch);
echo $page;
echo curl_error($ch);

What error do you get now?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.