<?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: Curl with PHP 5.2.9-2 and Apache 2.2.11 on Windows XP</title>
	<atom:link href="http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/</link>
	<description>Addy&#039;s Personal Blog On Web &#38; Technology</description>
	<lastBuildDate>Sun, 27 Jun 2010 04:33:35 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: example.com.ru</title>
		<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/comment-page-1/#comment-659</link>
		<dc:creator>example.com.ru</dc:creator>
		<pubDate>Mon, 21 Jun 2010 08:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogspot.fluidnewmedia.com/?p=1375#comment-659</guid>
		<description>I have been looking for this information for days.  Thanks for the great stuff.</description>
		<content:encoded><![CDATA[<p>I have been looking for this information for days.  Thanks for the great stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/comment-page-1/#comment-387</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 21 Sep 2009 12:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://blogspot.fluidnewmedia.com/?p=1375#comment-387</guid>
		<description>Very nice example. I was lucky to find it.
I was seriously rolling eyes when I seen that &quot;simple&quot; installation instruction on curl project site.

Thank you Ahad</description>
		<content:encoded><![CDATA[<p>Very nice example. I was lucky to find it.<br />
I was seriously rolling eyes when I seen that &#8220;simple&#8221; installation instruction on curl project site.</p>
<p>Thank you Ahad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/comment-page-1/#comment-360</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 26 Jul 2009 08:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogspot.fluidnewmedia.com/?p=1375#comment-360</guid>
		<description>Hey Eric.  No you don&#039;t even need to install Curl with the new release, but just make sure you have all the libs checked with your first install.  I&#039;ve had problems with the OpenSSL version (both local and server), but check which version of CURL your web server supports; that might do the trick.  Also double check your php.ini and apache config files.</description>
		<content:encoded><![CDATA[<p>Hey Eric.  No you don&#8217;t even need to install Curl with the new release, but just make sure you have all the libs checked with your first install.  I&#8217;ve had problems with the OpenSSL version (both local and server), but check which version of CURL your web server supports; that might do the trick.  Also double check your php.ini and apache config files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/comment-page-1/#comment-355</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Sat, 18 Jul 2009 18:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogspot.fluidnewmedia.com/?p=1375#comment-355</guid>
		<description>Thanks for the information. All works great on a simple vista machine running Apache server 2.2 php 5.2.10 Both examples work fine.
When trying a secure website https://www.web.com, I get nothing.
0 ){
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
}
$response = curl_exec($ch);     
if (curl_errno($ch)) {
    echo curl_error($ch);
} else {
    curl_close($ch);
    echo $response;
}
?&gt;
Should be getting this response from server:


If I rem the curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
I get an error
SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

Couple of things to note.  I installed curl 7.18.2
When I run the phpinfo(). 
libcurl/7.19.4 OpenSSL/0.9.8i zlib/1.2.3

It&#039;s amazing I made it this far.........and it works.
With the new release of php did I even need to download curl? 
Do I need to use the curl.exe to build a new ????</description>
		<content:encoded><![CDATA[<p>Thanks for the information. All works great on a simple vista machine running Apache server 2.2 php 5.2.10 Both examples work fine.<br />
When trying a secure website <a href="https://www.web.com" rel="nofollow">https://www.web.com</a>, I get nothing.<br />
0 ){<br />
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);<br />
}<br />
$response = curl_exec($ch);<br />
if (curl_errno($ch)) {<br />
    echo curl_error($ch);<br />
} else {<br />
    curl_close($ch);<br />
    echo $response;<br />
}<br />
?&gt;<br />
Should be getting this response from server:</p>
<p>If I rem the curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);<br />
I get an error<br />
SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed</p>
<p>Couple of things to note.  I installed curl 7.18.2<br />
When I run the phpinfo().<br />
libcurl/7.19.4 OpenSSL/0.9.8i zlib/1.2.3</p>
<p>It&#8217;s amazing I made it this far&#8230;&#8230;&#8230;and it works.<br />
With the new release of php did I even need to download curl?<br />
Do I need to use the curl.exe to build a new ????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curl with PHP 5.2.9-2 and Apache 2.2.11 on Windows XP</title>
		<link>http://blogspot.fluidnewmedia.com/2009/05/curl-with-php-529-2-and-apache-2211-on-windows-xp/comment-page-1/#comment-301</link>
		<dc:creator>Curl with PHP 5.2.9-2 and Apache 2.2.11 on Windows XP</dc:creator>
		<pubDate>Sun, 03 May 2009 20:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogspot.fluidnewmedia.com/?p=1375#comment-301</guid>
		<description>[...] More: Curl with PHP 5.2.9-2 and Apache 2.2.11 on Windows XP [...]</description>
		<content:encoded><![CDATA[<p>[...] More: Curl with PHP 5.2.9-2 and Apache 2.2.11 on Windows XP [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
