<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Scraping websites with PHP cURL under proxy</title>
	<atom:link href="http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/</link>
	<description>Achieving High Rankings Through Coding</description>
	<lastBuildDate>Sat, 04 Feb 2012 16:15:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: root</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-3302</link>
		<dc:creator>root</dc:creator>
		<pubDate>Sat, 17 Dec 2011 19:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-3302</guid>
		<description>When using proxies (in my case for a proxy tester) my script just keeps running as soon as i have more than 5 curls in a loop, even with the multiple curl handler ... cant figure out why that is?!</description>
		<content:encoded><![CDATA[<p>When using proxies (in my case for a proxy tester) my script just keeps running as soon as i have more than 5 curls in a loop, even with the multiple curl handler &#8230; cant figure out why that is?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scraper</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-3294</link>
		<dc:creator>Scraper</dc:creator>
		<pubDate>Thu, 15 Dec 2011 18:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-3294</guid>
		<description>That&#039;s good information in this blog, thanks for sharing.
I&#039;m currently using the Google scraper on google-scraper.squabbel.com (a bit customized). I think I found that link actually on one of your blogs a while ago!

I need to scrape about 1 million keywords per month with it, do you know how many proxies I will need ?
I&#039;m using a &quot;guru&quot; license at seo-proxies at this time, not sure if it&#039;s enough to keep going or if I need to upgrade even higher.

This is an important project, that&#039;s why I&#039;d really appreciate an answer.</description>
		<content:encoded><![CDATA[<p>That&#8217;s good information in this blog, thanks for sharing.<br />
I&#8217;m currently using the Google scraper on google-scraper.squabbel.com (a bit customized). I think I found that link actually on one of your blogs a while ago!</p>
<p>I need to scrape about 1 million keywords per month with it, do you know how many proxies I will need ?<br />
I&#8217;m using a &#8220;guru&#8221; license at seo-proxies at this time, not sure if it&#8217;s enough to keep going or if I need to upgrade even higher.</p>
<p>This is an important project, that&#8217;s why I&#8217;d really appreciate an answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Status</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2951</link>
		<dc:creator>Status</dc:creator>
		<pubDate>Wed, 02 Nov 2011 21:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2951</guid>
		<description>Hey, I´ve tested it that way with many different proxies, but I always get &quot;Received HTTP code 403 from proxy after CONNECT&quot; error. Any ideas what to do?</description>
		<content:encoded><![CDATA[<p>Hey, I´ve tested it that way with many different proxies, but I always get &#8220;Received HTTP code 403 from proxy after CONNECT&#8221; error. Any ideas what to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Champ Polestico</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2933</link>
		<dc:creator>Champ Polestico</dc:creator>
		<pubDate>Fri, 28 Oct 2011 04:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2933</guid>
		<description>Thanks man! Saved my life.</description>
		<content:encoded><![CDATA[<p>Thanks man! Saved my life.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hanibal</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2865</link>
		<dc:creator>Hanibal</dc:creator>
		<pubDate>Wed, 12 Oct 2011 20:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2865</guid>
		<description>Hello.
Thanks for post.
I have problem with running that code.
Error 404.
I have proxy from http://www.xroxy.com/proxy-country-DE.htm and it work when i put it into settings in firefox.
Why it don&#039;t work when I&#039;m doing it like this: ?
$options = array(
				CURLOPT_FAILONERROR =&gt; True,
				CURLOPT_RETURNTRANSFER =&gt; True,
				CURLOPT_TIMEOUT =&gt; 25,
				CURLOPT_SSL_VERIFYPEER =&gt; False,
				CURLOPT_USERAGENT =&gt; &#039;Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)&#039;,
				CURLOPT_FOLLOWLOCATION =&gt; True,
				CURLOPT_POST =&gt; 0,
				CURLOPT_COOKIEJAR =&gt; $cookiesFileName,
				CURLOPT_COOKIEFILE =&gt; $cookiesFileName,
				CURLOPT_PROXY =&gt; &#039;62.157.186.16:80&#039;,
				CURLOPT_HTTPPROXYTUNNEL =&gt; 1,
);
$URL= &#039;http://hanibal.hopto.org/&#039;;
$c = curl_init($URL); 
curl_setopt_array($c, $options);
$result = curl_exec($c);</description>
		<content:encoded><![CDATA[<p>Hello.<br />
Thanks for post.<br />
I have problem with running that code.<br />
Error 404.<br />
I have proxy from <a href="http://www.xroxy.com/proxy-country-DE.htm" rel="nofollow">http://www.xroxy.com/proxy-country-DE.htm</a> and it work when i put it into settings in firefox.<br />
Why it don&#8217;t work when I&#8217;m doing it like this: ?<br />
$options = array(<br />
				CURLOPT_FAILONERROR =&gt; True,<br />
				CURLOPT_RETURNTRANSFER =&gt; True,<br />
				CURLOPT_TIMEOUT =&gt; 25,<br />
				CURLOPT_SSL_VERIFYPEER =&gt; False,<br />
				CURLOPT_USERAGENT =&gt; &#8216;Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)&#8217;,<br />
				CURLOPT_FOLLOWLOCATION =&gt; True,<br />
				CURLOPT_POST =&gt; 0,<br />
				CURLOPT_COOKIEJAR =&gt; $cookiesFileName,<br />
				CURLOPT_COOKIEFILE =&gt; $cookiesFileName,<br />
				CURLOPT_PROXY =&gt; &#8217;62.157.186.16:80&#8242;,<br />
				CURLOPT_HTTPPROXYTUNNEL =&gt; 1,<br />
);<br />
$URL= &#8216;<a href="http://hanibal.hopto.org/&#039;" rel="nofollow">http://hanibal.hopto.org/&#039;</a>;<br />
$c = curl_init($URL);<br />
curl_setopt_array($c, $options);<br />
$result = curl_exec($c);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ejz</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2685</link>
		<dc:creator>Ejz</dc:creator>
		<pubDate>Thu, 29 Sep 2011 14:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2685</guid>
		<description>Can you provide some examples concerning multithread issue?</description>
		<content:encoded><![CDATA[<p>Can you provide some examples concerning multithread issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google Scraping</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2569</link>
		<dc:creator>Google Scraping</dc:creator>
		<pubDate>Wed, 24 Aug 2011 00:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2569</guid>
		<description>Yeah, I&#039;ve used this post several times to help clients use our proxies, and it seems to work out well.</description>
		<content:encoded><![CDATA[<p>Yeah, I&#8217;ve used this post several times to help clients use our proxies, and it seems to work out well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aro</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2550</link>
		<dc:creator>Aro</dc:creator>
		<pubDate>Mon, 15 Aug 2011 15:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2550</guid>
		<description>Theres a python libray called libgmail that lets you do that.</description>
		<content:encoded><![CDATA[<p>Theres a python libray called libgmail that lets you do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrmoney</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-2170</link>
		<dc:creator>mrmoney</dc:creator>
		<pubDate>Mon, 24 Jan 2011 16:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-2170</guid>
		<description>how can i do this to search emails on google ?</description>
		<content:encoded><![CDATA[<p>how can i do this to search emails on google ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay vinoth</title>
		<link>http://www.fromzerotoseo.com/scraping-websites-php-curl-proxy/comment-page-1/#comment-1800</link>
		<dc:creator>vijay vinoth</dc:creator>
		<pubDate>Mon, 27 Sep 2010 21:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.fromzerotoseo.com/?p=512#comment-1800</guid>
		<description>Hi all,

              I tried this coading. But I got the error message like this. Any one can help me ???


Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in 



/home/wwwlawy/public_html/mails/gmail/libgmailer.php on line 42

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/wwwlawy/public_html/mails/gmail/libgmailer.php on line 77

No contacts found</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>              I tried this coading. But I got the error message like this. Any one can help me ???</p>
<p>Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in </p>
<p>/home/wwwlawy/public_html/mails/gmail/libgmailer.php on line 42</p>
<p>Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/wwwlawy/public_html/mails/gmail/libgmailer.php on line 77</p>
<p>No contacts found</p>
]]></content:encoded>
	</item>
</channel>
</rss>

