<?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>Peter Stagg dot com - the blog &#187; pear</title>
	<atom:link href="http://www.peterstagg.com/tag/pear/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.peterstagg.com</link>
	<description>Cumulus humilis &#38; cirrus musings: ponderings in the cloudâ€¦</description>
	<lastBuildDate>Sun, 20 Nov 2011 11:27:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing FirePHP on OS X &#8211; Leopard from PEAR</title>
		<link>http://www.peterstagg.com/2009/05/installing-firephp-on-os-x-leopard-from-pear/</link>
		<comments>http://www.peterstagg.com/2009/05/installing-firephp-on-os-x-leopard-from-pear/#comments</comments>
		<pubDate>Wed, 20 May 2009 00:39:23 +0000</pubDate>
		<dc:creator>pstagg</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[firephp]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.peterstagg.com/?p=365</guid>
		<description><![CDATA[Quick tip for installing FirePHP from PEAR if you installed PEAR in &#8216;/usr/local&#8217; as per the instructions in my previous post. Make sure you install as superuser: $ sudo pear channel-discover pear.firephp.org $ sudo pear install firephp/FirePHPCore]]></description>
			<content:encoded><![CDATA[<p>Quick tip for installing <a href="http://www.firephp.org">FirePHP</a> from PEAR if you installed PEAR in &#8216;/usr/local&#8217; as per the instructions in my <a href="http://www.peterstagg.com/2009/05/20/installing-pear-on-os-x-leopard">previous post</a>. Make sure you install as superuser:</p>

<pre>$ sudo pear channel-discover pear.firephp.org
$ sudo pear install firephp/FirePHPCore</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.peterstagg.com/2009/05/installing-firephp-on-os-x-leopard-from-pear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing PEAR on OS X &#8211; Leopard</title>
		<link>http://www.peterstagg.com/2009/05/installing-pear-on-os-x-leopard/</link>
		<comments>http://www.peterstagg.com/2009/05/installing-pear-on-os-x-leopard/#comments</comments>
		<pubDate>Wed, 20 May 2009 00:21:22 +0000</pubDate>
		<dc:creator>pstagg</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.peterstagg.com/?p=361</guid>
		<description><![CDATA[A quick set of instructions for installing PEAR on OS X 10.5 (Leopard): PHP&#8217;s PEAR repository does not come with Leopard but it only takes about five minutes, if that, to install. Download the PEAR install package: $ curl http://pear.php.net/go-pear &#62; go-pear.php Run the installer as superuser: $ sudo php -q go-pear.php If your behind [...]]]></description>
			<content:encoded><![CDATA[<p>A quick set of instructions for installing <a title="PEAR's web site" href="http://pear.php.net/index.php">PEAR</a> on OS X 10.5 (Leopard):</p>

<p>PHP&#8217;s PEAR repository does not come with Leopard but it only takes about five minutes, if that, to install.<span id="more-361"></span></p>

<p>Download the PEAR install package:</p>

<pre>$ curl http://pear.php.net/go-pear &gt; go-pear.php</pre>

<p>Run the installer as superuser:</p>

<pre>$ sudo php -q go-pear.php</pre>

<p>If your behind a proxy/firewall you can enter the required details when the following prompt appears:</p>

<pre>HTTP proxy (http://user:password@proxy.myhost.com:port), or Enter for none:</pre>

<p>The PEAR installer will suggest a file layout similar to the following, we need to change the installation prefix (see below):</p>

<pre>Â 1. Installation prefix ($prefix) : /Users/usrname</pre>

<pre>Â 2. Temporary files directoryÂ Â Â Â  : $prefix/temp</pre>

<pre>Â 3. Binaries directoryÂ Â Â Â Â Â Â Â Â Â Â  : $prefix/bin</pre>

<pre>Â 4. PHP code directory ($php_dir) : $prefix/PEAR</pre>

<pre>Â 5. Documentation base directoryÂ  : $php_dir/docs</pre>

<pre>Â 6. Data base directoryÂ Â Â Â Â Â Â Â Â Â  : $php_dir/data</pre>

<pre>Â 7. Tests base directoryÂ Â Â Â Â Â Â Â Â  : $php_dir/tests</pre>

<p>Change the installation prefix to &#8216;/usr/local&#8217;:</p>

<pre>1-7, 'all' or Enter to continue: 1</pre>

<pre>Installation prefix ($prefix) [/Users/awmstrs] : /usr/local</pre>

<p>Choose whether or not to install optional bundled packages when the following prompt appears (see <a title="PEAR's web site" href="http://pear.php.net/index.php">PEAR</a>&#8216;s site for more info) :</p>

<pre>The following PEAR packages are bundled with PHP: PEAR_Frontend_Web-beta, PEAR_Frontend_Gtk2, MDB2.</pre>

<pre>Would you like to install these as well? [Y/n] :</pre>

<p>Allow the install script to alter the php.ini file or make the changes yourself (see <a title=" How To Install PEAR in Mac OS X Leopard @ clickontyler.com" href="http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/">http://clickontyler.com/</a>):</p>

<pre>Would you like to alter php.ini &lt;/private/etc/php.ini&gt;? [Y/n] : Y</pre>

<p>That&#8217;s it &#8211; as the script says:</p>

<pre>The 'pear' command is now at your service at /usr/local/bin/pear</pre>

<p>Thanks to <a title=" How To Install PEAR in Mac OS X Leopard @ clickontyler.com" href="http://clickontyler.com/blog/2008/01/how-to-install-pear-in-mac-os-x-leopard/">http://clickontyler.com/</a> for pointing me in the right direction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.peterstagg.com/2009/05/installing-pear-on-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

