<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jamie Thompson &#187; curl</title>
	<atom:link href="http://jamiethompson.co.uk/tags/curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamiethompson.co.uk</link>
	<description>Web Developer</description>
	<lastBuildDate>Tue, 08 May 2012 10:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Install cURL support under Uniform Server 3.5 Apollo</title>
		<link>http://jamiethompson.co.uk/web/2009/03/31/how-to-install-curl-support-under-uniform-server-35-apollo/</link>
		<comments>http://jamiethompson.co.uk/web/2009/03/31/how-to-install-curl-support-under-uniform-server-35-apollo/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 11:22:33 +0000</pubDate>
		<dc:creator>Jamie Thompson</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA["uniform server"]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[uniserver]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://jamazon.co.uk/?p=195</guid>
		<description><![CDATA[Uniform Server 3.5 Apollo is an excellent environment for those of us who, for whatever reason, use Windows for PHP development. Unforunately it comes without cURL support. After a bit of digging I figured out (i&#8217;m no linux sysadmin) how fairly simple it is to get cURL up and running with uniserver.
The following assumes that [...]]]></description>
			<content:encoded><![CDATA[<p>Uniform Server 3.5 Apollo is an excellent environment for those of us who, for whatever reason, use Windows for PHP development. Unforunately it comes without cURL support. After a bit of digging I figured out (i&#8217;m no linux sysadmin) how fairly simple it is to get cURL up and running with uniserver.</p>
<p>The following assumes that you have Uniform Server installed in &#8220;%ProgramFiles%\Uniform Server\&#8221;. If you have it somewhere different just modify the instuctions accordingly.</p>
<p>In the php.ini file located in &#8220;%ProgramFiles%\Uniform Server\udrive\usr\local\php&#8221;, search for the following line:</p>
<pre class="brush:plain">;extension=php_curl.dll</pre>
<p>and enable curl by removing the semicolon as follows</p>
<pre class="brush:plain">extension=php_curl.dll</pre>
<p>It&#8217;s not quite as simple as that. You&#8217;ll need three dll files for cURL to actually function. Luckily you can get them here.</p>
<p><a href="http://jamazon.co.uk/files/uniserver_curl.zip">http://jamazon.co.uk/files/uniserver_curl.zip</a></p>
<p>Download and unzip the file above. You should end up with three relevant looking dlls</p>
<p><strong>ssleay32.dll </strong><br />
copy into &#8220;%ProgramFiles%\Uniform Server\udrive\usr\local\apache2\bin&#8221;</p>
<p><strong>libeay32.dll</strong><br />
copy into &#8220;%ProgramFiles%\Uniform Server\udrive\usr\local\apache2\bin&#8221;</p>
<p><strong>php_curl.dll</strong><br />
copy into &#8220;%ProgramFiles%\Uniform Server\udrive\usr\local\php\extensions&#8221;</p>
<p>Then just start (or restart) Uniform Server for the changes to take effect.</p>
<p>You can take a look at the output of phpinfo() or run the following code to determine whether or not cURL is installed.</p>
<pre class="brush: php">&lt;?
if (!function_exists('curl_init')){
die('Sorry, cURL support is not installed');
}
echo "Yay! cURL support is Installed!";
?&gt;
</pre>
<p>Bob&#8217;s your uncle!</p>
]]></content:encoded>
			<wfw:commentRss>http://jamiethompson.co.uk/web/2009/03/31/how-to-install-curl-support-under-uniform-server-35-apollo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

