<?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>Grape Thinking &#187; fix</title>
	<atom:link href="http://grapethinking.com/tag/fix/feed" rel="self" type="application/rss+xml" />
	<link>http://grapethinking.com</link>
	<description>Fusing Mind with Vine</description>
	<lastBuildDate>Mon, 30 Apr 2012 19:52:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Enable Curl on Xampp</title>
		<link>http://grapethinking.com/enable-curl-on-xampp</link>
		<comments>http://grapethinking.com/enable-curl-on-xampp#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:17:48 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=2085</guid>
		<description><![CDATA[I generally do my development work on a local windows machine with the latest version of Xampp installed. I was recently toying around with the tayst twitter feed, and was having trouble using curl with xampp. The problem?.. curl was not enabled by default in Xampp.  You receive the following <a href="http://grapethinking.com/enable-curl-on-xampp" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>I generally do my development work on a local windows machine with the latest version of <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a> installed. I was recently toying around with the <a href="http://www.tayst.com/twitter/" target="_blank">tayst twitter feed,</a> and was having trouble using curl with <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>.</p>
<p>The problem?.. curl was not enabled by default in <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a>.  You receive the following error:</p>
<ul>
<li> <strong>Fatal error</strong>:  Call to undefined function  curl_init() in <strong>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\htdocs\tayst\<a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">twitter</a>\index.php</strong> on line <strong>4</strong></li>
</ul>
<p>The solution?  These simple steps!<span id="more-2085"></span></p>
<p><strong><span style="text-decoration: underline;">Step 1.</span></strong> Stop all <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a> services: Apache, Mysql, Filezilla, and Mercury.</p>
<p><strong><span style="text-decoration: underline;">Step 2.</span></strong> Open the following files in your editor of choice. (Replace C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> with the location of your <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> install)</p>
<ul>
<li>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\apache\bin\php.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php.ini</li>
<li>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php5.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php4\php.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php4\php4.ini</li>
</ul>
<p><strong><span style="text-decoration: underline;">Step 3.</span></strong> Find the following code in each of the files, and remove the ; (semicolon) at the beginning of the line. You will most likely see it at line 546 or line 582.</p>
<ul>
<li>old line &#8211; <strong><em>;extension=php_curl.dll</em></strong></li>
<li>new line &#8211; <em><strong>extension=php_curl.dll</strong></em></li>
</ul>
<p><strong><span style="text-decoration: underline;">Step 4.</span></strong> Start your apache services.</p>
<p>See what an easy fix to curl on <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> by simply removing a few semicolons.  Happy Coding!</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/getting-rails-to-work-on-a-windows-machine-running-xampp" title="Getting Rails to Work on a Windows Machine Running Xampp (March 31, 2008)">Getting Rails to Work on a Windows Machine Running Xampp</a></li>
	<li><a href="http://grapethinking.com/what" title="What? (April 2, 2009)">What?</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/enable-curl-on-xampp/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

