<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Learning PHPinux</title>
	<atom:link href="http://gf4e.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gf4e.wordpress.com</link>
	<description>Vultri - Just a new e-business in the making! :)</description>
	<lastBuildDate>Fri, 02 Jan 2009 14:35:27 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on cURL behind proxy and all the heavy stuff&#8230; by gf4e</title>
		<link>http://gf4e.wordpress.com/2008/06/25/curl-behind-proxy-and-all-the-heavy-stuff/#comment-96</link>
		<dc:creator>gf4e</dc:creator>
		<pubDate>Fri, 02 Jan 2009 14:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=29#comment-96</guid>
		<description>also there is a way to do that through php sockets as well. if, for example, curl is not available.</description>
		<content:encoded><![CDATA[<p>also there is a way to do that through php sockets as well. if, for example, curl is not available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cURL behind proxy and all the heavy stuff&#8230; by gf4e</title>
		<link>http://gf4e.wordpress.com/2008/06/25/curl-behind-proxy-and-all-the-heavy-stuff/#comment-95</link>
		<dc:creator>gf4e</dc:creator>
		<pubDate>Fri, 02 Jan 2009 14:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=29#comment-95</guid>
		<description>pretty much there are a couple of options that allow to use proxy with curl.

curl_setopt($ch, CURLOPT_PROXY, &quot;http://000.000.000.000:0000&quot;); 
curl_setopt($ch, CURLOPT_PROXYPORT, 0000); 
curl_setopt ($ch, CURLOPT_PROXYUSERPWD, &quot;xxx:xxx&quot;);

the first one sets your proxy&#039;s ip and port. the second one is just for the port, which is weird. the third one is for authorization with proxy.

for a manual and examples visit: http://ca.php.net/curl</description>
		<content:encoded><![CDATA[<p>pretty much there are a couple of options that allow to use proxy with curl.</p>
<p>curl_setopt($ch, CURLOPT_PROXY, &#8220;http://000.000.000.000:0000&#8243;);<br />
curl_setopt($ch, CURLOPT_PROXYPORT, 0000);<br />
curl_setopt ($ch, CURLOPT_PROXYUSERPWD, &#8220;xxx:xxx&#8221;);</p>
<p>the first one sets your proxy&#8217;s ip and port. the second one is just for the port, which is weird. the third one is for authorization with proxy.</p>
<p>for a manual and examples visit: <a href="http://ca.php.net/curl" rel="nofollow">http://ca.php.net/curl</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF to Text + PHP by gf4e</title>
		<link>http://gf4e.wordpress.com/2008/07/03/pdf-to-text-php/#comment-94</link>
		<dc:creator>gf4e</dc:creator>
		<pubDate>Fri, 02 Jan 2009 06:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=37#comment-94</guid>
		<description>you have to make sure that these calls (system()) are allowed by your hoster. then manually upload the tool to wherever you want on your server, an appropriate version for your OS. then try using a local path to the tool in the system() or another external execution call...</description>
		<content:encoded><![CDATA[<p>you have to make sure that these calls (system()) are allowed by your hoster. then manually upload the tool to wherever you want on your server, an appropriate version for your OS. then try using a local path to the tool in the system() or another external execution call&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cURL behind proxy and all the heavy stuff&#8230; by article submission</title>
		<link>http://gf4e.wordpress.com/2008/06/25/curl-behind-proxy-and-all-the-heavy-stuff/#comment-93</link>
		<dc:creator>article submission</dc:creator>
		<pubDate>Tue, 30 Dec 2008 11:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=29#comment-93</guid>
		<description>I want to connect to other sites through proxie. Please post example:)</description>
		<content:encoded><![CDATA[<p>I want to connect to other sites through proxie. Please post example:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF to Text + PHP by hrxone</title>
		<link>http://gf4e.wordpress.com/2008/07/03/pdf-to-text-php/#comment-92</link>
		<dc:creator>hrxone</dc:creator>
		<pubDate>Fri, 12 Dec 2008 09:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=37#comment-92</guid>
		<description>hi...i have some trouble for using this tool (pdftotext) below is my code for read pdf content:
$file = &quot;test.pdf&quot;;
    $outpath = preg_replace(&quot;/\.pdf$/&quot;, &quot;&quot;, $file).&quot;.txt&quot;;
   
    system(&quot;pdftotext &quot;.escapeshellcmd($file), $ret);
    if ($ret == 0)
    {
        $value = file_get_contents($outpath);
        unlink($outpath);
        print $value;
    }
    if ($ret == 127)
        print &quot;Could not find pdftotext tool.&quot;;
    if ($ret == 1)
        print &quot;Could not find pdf file.&quot;; 

i have got this code from php.net, and i try it in my server but the report is coult not find pdftotext tool. How do i know if my server have this tool?or maybe how to install that tool? I will very appreciate if you want to help me..Please contact me via email. Thank you</description>
		<content:encoded><![CDATA[<p>hi&#8230;i have some trouble for using this tool (pdftotext) below is my code for read pdf content:<br />
$file = &#8220;test.pdf&#8221;;<br />
    $outpath = preg_replace(&#8220;/\.pdf$/&#8221;, &#8220;&#8221;, $file).&#8221;.txt&#8221;;</p>
<p>    system(&#8220;pdftotext &#8220;.escapeshellcmd($file), $ret);<br />
    if ($ret == 0)<br />
    {<br />
        $value = file_get_contents($outpath);<br />
        unlink($outpath);<br />
        print $value;<br />
    }<br />
    if ($ret == 127)<br />
        print &#8220;Could not find pdftotext tool.&#8221;;<br />
    if ($ret == 1)<br />
        print &#8220;Could not find pdf file.&#8221;; </p>
<p>i have got this code from php.net, and i try it in my server but the report is coult not find pdftotext tool. How do i know if my server have this tool?or maybe how to install that tool? I will very appreciate if you want to help me..Please contact me via email. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cURL behind proxy and all the heavy stuff&#8230; by gf4e</title>
		<link>http://gf4e.wordpress.com/2008/06/25/curl-behind-proxy-and-all-the-heavy-stuff/#comment-91</link>
		<dc:creator>gf4e</dc:creator>
		<pubDate>Tue, 02 Dec 2008 16:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=29#comment-91</guid>
		<description>Hey, is that for the curl sample? I left it on my old computer, but if you still need it and you can&#039;t figure it out on your own, tell me I will type you an example piece of code. ;)</description>
		<content:encoded><![CDATA[<p>Hey, is that for the curl sample? I left it on my old computer, but if you still need it and you can&#8217;t figure it out on your own, tell me I will type you an example piece of code. ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cURL behind proxy and all the heavy stuff&#8230; by David</title>
		<link>http://gf4e.wordpress.com/2008/06/25/curl-behind-proxy-and-all-the-heavy-stuff/#comment-90</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 02 Dec 2008 16:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=29#comment-90</guid>
		<description>Hi, Do you have the script now?
I&#039;ve been waitin&#039;</description>
		<content:encoded><![CDATA[<p>Hi, Do you have the script now?<br />
I&#8217;ve been waitin&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ndiswrapper and ssb conflict by Lenny on a Dell Vostro 1310 &#171; Unleash the Tech Freak Inside</title>
		<link>http://gf4e.wordpress.com/2008/04/28/ndiswrapper-and-ssb-conflict/#comment-89</link>
		<dc:creator>Lenny on a Dell Vostro 1310 &#171; Unleash the Tech Freak Inside</dc:creator>
		<pubDate>Fri, 29 Aug 2008 10:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=10#comment-89</guid>
		<description>[...] Have a look at this: http://gf4e.wordpress.com/2008/04/28/ndiswrapper-and-ssb-conflict/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Have a look at this: <a href="http://gf4e.wordpress.com/2008/04/28/ndiswrapper-and-ssb-conflict/" rel="nofollow">http://gf4e.wordpress.com/2008/04/28/ndiswrapper-and-ssb-conflict/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XAMPP &#8211; a fast way to create a local web-server by chheangmeng</title>
		<link>http://gf4e.wordpress.com/2008/05/05/xampp-a-fast-way-to-create-a-local-web-server/#comment-88</link>
		<dc:creator>chheangmeng</dc:creator>
		<pubDate>Tue, 26 Aug 2008 18:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=19#comment-88</guid>
		<description>need to improve my xampp</description>
		<content:encoded><![CDATA[<p>need to improve my xampp</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why is Rogers.com so slow? by Dean</title>
		<link>http://gf4e.wordpress.com/2008/04/28/why-is-rogerscom-so-slow/#comment-87</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Mon, 25 Aug 2008 22:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://gf4e.wordpress.com/?p=11#comment-87</guid>
		<description>My Rogers is absolutely useless.  It&#039;s the slowest website I have ever experienced.  It reminds me of the days when I had a 56k fax modem.  Once the pages actually load you still get errors or things are not implemented properly.  I have an iPhone 3G and I wanted to change my phone number online.  Unfortunately you cannot do this with an iPhone because My Rogers doesn&#039;t list Apple or the iPhone in the &quot;select phone manufacturer/model&quot; option.</description>
		<content:encoded><![CDATA[<p>My Rogers is absolutely useless.  It&#8217;s the slowest website I have ever experienced.  It reminds me of the days when I had a 56k fax modem.  Once the pages actually load you still get errors or things are not implemented properly.  I have an iPhone 3G and I wanted to change my phone number online.  Unfortunately you cannot do this with an iPhone because My Rogers doesn&#8217;t list Apple or the iPhone in the &#8220;select phone manufacturer/model&#8221; option.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
