Proxy Rotation Service or Somthing Similar

gmogames

Newbie
Joined
Nov 29, 2012
Messages
1
Reaction score
0
Hi Everyone,

I'm new to the forum, although I already visit for a long time, and I really wanted your opinion on how to accomplish something.

I have a PHP script that opens a CURL to a website to grab their data, example: anywebsite.xxx/getCompanies.php

But this site blocks the connection if a lot of calls are made to this URL with the same IP.

I wanted to add an option to the CURL to make the calls with a proxy server, but I needed that every call I made to the URL was made using one different IP.

I don't need to have really one IP per call, but I need at least 10 or 20 different IP's to random through each call.

I found only one service that works like that, that is proxymesh but I wanted to find others like that because I have other scripts that will need different blocks of IP.

Can anyone recommend anything like that?

Thanks!
 
I am looking for something similar. I am more so looking for a script to take care of the proxy integration/switching, and I guess a good private proxy provider.
 
You can use this code to set proxy for cURL in PHP:
Code:
curl_setopt($curl, CURLOPT_PROXY, "12.34.56.78:3128");curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
 
Have you seen this thread?

Code:
http://www.blackhatworld.com/blackhat-seo/blackhat-lounge/523093-who-wants-share-private-proxies.html
 
All standard HTTP proxies support PHP CURL, such as the HTTP proxies in the for sale section.
 
Hi Everyone,

I'm new to the forum, although I already visit for a long time, and I really wanted your opinion on how to accomplish something.

I have a PHP script that opens a CURL to a website to grab their data, example: anywebsite.xxx/getCompanies.php

But this site blocks the connection if a lot of calls are made to this URL with the same IP.

I wanted to add an option to the CURL to make the calls with a proxy server, but I needed that every call I made to the URL was made using one different IP.

I don't need to have really one IP per call, but I need at least 10 or 20 different IP's to random through each call.

I found only one service that works like that, that is proxymesh but I wanted to find others like that because I have other scripts that will need different blocks of IP.

Can anyone recommend anything like that?

Thanks!

Hi,

I am not connected to any proxy providers here. I am just a noob like you who's in search for expert advise. I have actually put my faith in a proxy provider called "InstantProxies.com " which enabled me to do all the things that I needed in promoting our newly online business. Honestly this is the first time i mentioned about a proxy provider you can view my past posts for that. I am just suuupper happy with my proxies that I want to share it with everyone.. and support was great too. They can support PHP curl too . so I read. No harm with trying. Perhaps you could try them too.

instantproxies.com :fing26: ROCKS!
 
Last edited:
Back
Top