PHP Classes

Proxy network

Recommend this page to a friend!

      PHP Youtube and Vimeo Video Downloader Script  >  All threads  >  Proxy network  >  (Un) Subscribe thread alerts  
Subject:Proxy network
Summary:Applying this class in proxy network
Messages:3
Author:Tim Younes
Date:2017-01-19 06:27:32
 

 


  1. Proxy network   Reply   Report abuse  
Picture of Tim Younes Tim Younes - 2017-01-19 06:27:32
How can i apply this class when using proxy network?

  2. Re: Proxy network   Reply   Report abuse  
Picture of Ssaurz Acharya Ssaurz Acharya - 2017-01-19 08:40:49 - In reply to message 1 from Tim Younes
Hi there,

You can use php curl, it has curl options to set when using a proxy.
curl_setopt($ch, CURLOPT_PROXY, "proxy ip");
curl_setopt($ch, CURLOPT_PROXYPORT, port_num);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, "user:password");

  3. Re: Proxy network   Reply   Report abuse  
Picture of Tim Younes Tim Younes - 2017-01-19 08:56:41 - In reply to message 2 from Ssaurz Acharya
Thanks..

I will try it.