I probably shouldnt have said *all* requests.
Im not sure what would be the best way of doing it.
Id be doing it at application level I suppose.
As Id write a script to check my proxy list, then pull proxies from a database to use within curl.
Is this all I'd need? Is it this easy?
Probably a dumb question, but Im not really up to speed on network stuff as yet.
Ive always taken the easy way out and used programs already built, but have now
decided to start rolling my own way of doing things.
For what its worth this is how I have been running some scripts thus far from WAMP,
using P/T/Vidalia.
$tor = 'localhost:8118';
curl_setopt ($ch, CURLOPT_PROXY, $tor);
if (isset($proxy)) {
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, true);
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP );
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5 );
}