hello , look at this script to scrape google result it's not working with Proxy , when i removing bellow two lines it's working for few time , after that result showing blank for few hours ?? CURLOPT_PROXY => "193.138.185.51", //Proxy host if needed CURLOPT_PROXYPORT => "3128", //Proxy port if needed PHP: what is the problem ?? any other scraper available
I am not familiar with cURL, but I guess that the proxy's URL must be in HTTP format, like this: CURLOPT_PROXY => "http://193.138.185.51/", //Proxy host if needed PHP: