<?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/"
	>

<channel>
	<title>Bluehost Hacks</title>
	<atom:link href="http://bluehosthacks.com/feed" rel="self" type="application/rss+xml" />
	<link>http://bluehosthacks.com</link>
	<description></description>
	<pubDate>Thu, 10 Jul 2008 19:31:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Delays&#8230;</title>
		<link>http://bluehosthacks.com/news/delays</link>
		<comments>http://bluehosthacks.com/news/delays#comments</comments>
		<pubDate>Thu, 10 Jul 2008 19:31:16 +0000</pubDate>
		<dc:creator>Cade</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://bluehosthacks.com/?p=12</guid>
		<description><![CDATA[A personal move and a local telco aquisition have slowed down progress on Bluehost Hacks. Once I get settled and a connection to the internet at home, things should pick up again.
]]></description>
			<content:encoded><![CDATA[<p>A personal move and a local telco aquisition have slowed down progress on Bluehost Hacks. Once I get settled and a connection to the internet at home, things should pick up again.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehosthacks.com/news/delays/feed</wfw:commentRss>
		</item>
		<item>
		<title>1 Million Down, 10 Million to Go&#8230;</title>
		<link>http://bluehosthacks.com/news/1-million-down-10-million-to-go</link>
		<comments>http://bluehosthacks.com/news/1-million-down-10-million-to-go#comments</comments>
		<pubDate>Wed, 25 Jun 2008 23:24:20 +0000</pubDate>
		<dc:creator>Cade</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://bluehosthacks.com/?p=11</guid>
		<description><![CDATA[Matt Heaton (CEO of Bluehost) announced on his blog that Bluehost and related companies will soon reach 1 million domains hosted&#8211; a milestone to say the least.
]]></description>
			<content:encoded><![CDATA[<p>Matt Heaton (CEO of Bluehost) announced on his blog that Bluehost and related companies will <a href="http://mattheaton.com/?p=144">soon reach 1 million domains hosted</a>&#8211; a milestone to say the least.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehosthacks.com/news/1-million-down-10-million-to-go/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Install PDFlib Lite (and the PHP .so)</title>
		<link>http://bluehosthacks.com/howto/php/how-to-install-pdflib-lite-and-the-php-so</link>
		<comments>http://bluehosthacks.com/howto/php/how-to-install-pdflib-lite-and-the-php-so#comments</comments>
		<pubDate>Fri, 20 Jun 2008 03:22:25 +0000</pubDate>
		<dc:creator>Cade</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[pdflib]]></category>

		<guid isPermaLink="false">http://dev.ekblad-frank.com/bluehosthacks/?p=5</guid>
		<description><![CDATA[I regularly get requests to install PDFlib Lite on servers, but have to turn them down due to licensing concerns (installing software licensed for personal use on a business machine with 450 users can be tricky), now you can install it on your own.]]></description>
			<content:encoded><![CDATA[<p>I regularly get requests to install PDFlib Lite on servers, but have to turn them down due to licensing concerns (installing software licensed for personal use on a business machine with 450 users can be tricky), now you can install it on your own. Let&#8217;s get started by first installing <a href="http://www.pdflib.com/products/pdflib-family/pdflib-lite/">PDFLib Lite</a>.</p>
<h4><span class="mw-headline">Grab the source package </span></h4>
<pre>cd ~/tmp/
wget <a class="external free" title="http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-7.0.3.tar.gz" rel="nofollow" href="http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-7.0.3.tar.gz">http://www.pdflib.com/binaries/PDFlib/703/PDFlib-Lite-7.0.3.tar.gz</a></pre>
<p><a name="Unpack_the_archive"></a></p>
<h4><span class="mw-headline"> Unpack the archive </span></h4>
<pre>tar xvzf PDFlib-Lite-7.0.3.tar.gz</pre>
<p><span class="mw-headline"><strong>Compile PDFlib Lite</strong> </span></p>
<pre>cd PDFlib-Lite-7.0.3
./configure --prefix=$HOME/usr --without-java
make
make install</pre>
<p><em>You may see an error about a failure to copy to /usr/local/lib for Python and Perl. You can safely ignore it. If it bothers you that much, add <code>--without-python --without-perl</code> to the <code>configure</code> and re-<code>make install</code>.</em></p>
<p><a name="Build_the_PDFlib_DSO_for_PHP"></a></p>
<h4><span class="mw-headline"> Build the PDFlib DSO for PHP </span></h4>
<pre>cd ~/tmp
pecl download pdflib
tar xvzf pdflib-*.tgz
cd pdflib-*
phpize
./configure --with-pdflib=$HOME/usr
make</pre>
<p>At this point, you have a built pdf.so file in ~/tmp/pdflib-*/modules. Copy it somewhere safe. I like to create an extension directory locally for all my extensions (you need to create it if doesn&#8217;t already exist).</p>
<pre>cp ~/tmp/pdflib-*/modules/pdf.so ~/extensions</pre>
<p>Now to implement it. Add/ modify the following in your php.ini:</p>
<pre>extension_dir=/home/&lt;username&gt;/extensions
extension=pdf.so</pre>
<p><em><strong>Note:</strong> If you depend on system installed extensions (ie. PDO_MySQL) you will need to copy them into your local extension directory.</em></p>
<pre>cp /usr/lib/php/extensions/*/* ~/extensions</pre>
<p>This copy may be unpredictable if there are multiple no-debug-non-zts- directories. If so, copy the extensions from the newer directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehosthacks.com/howto/php/how-to-install-pdflib-lite-and-the-php-so/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Enable SSH Access</title>
		<link>http://bluehosthacks.com/essential/how-to-enable-ssh-access</link>
		<comments>http://bluehosthacks.com/essential/how-to-enable-ssh-access#comments</comments>
		<pubDate>Tue, 17 Jun 2008 09:02:13 +0000</pubDate>
		<dc:creator>Cade</dc:creator>
		
		<category><![CDATA[Essential]]></category>

		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://dev.ekblad-frank.com/bluehosthacks/?p=4</guid>
		<description><![CDATA[Bluehost offers SSH access free with each hosting account, but you do have to jump through a hoop to enable it. In order to enable SSH access, you must either fax or email a copy of your government issued ID to them. There are a couple ways to make it happen:

Send a fax that includes [...]]]></description>
			<content:encoded><![CDATA[<p>Bluehost offers SSH access free with each hosting account, but you do have to jump through a hoop to enable it. In order to enable SSH access, you must either fax or email a copy of your government issued ID to them. There are a couple ways to make it happen:</p>
<ol>
<li>Send a fax that includes your domain name and ID to <strong>(801) 765-1992.</strong></li>
<li>Scan your ID and submit it via your control panel&#8217;s &#8220;SSH/ Shell Access&#8221; icon.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://bluehosthacks.com/essential/how-to-enable-ssh-access/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Install Git</title>
		<link>http://bluehosthacks.com/howto/how-to-install-git</link>
		<comments>http://bluehosthacks.com/howto/how-to-install-git#comments</comments>
		<pubDate>Tue, 17 Jun 2008 08:26:38 +0000</pubDate>
		<dc:creator>Cade</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://dev.ekblad-frank.com/bluehosthacks/?p=3</guid>
		<description><![CDATA[GIT is a fast version control system that is gaining popularity. Install it in under 5 minutes.]]></description>
			<content:encoded><![CDATA[<p><a class="external text" title="http://git.or.cz/" rel="nofollow" href="http://git.or.cz/">GIT</a> is a fast version control system that is gaining popularity. Since you can&#8217;t install via RPM as an unprivileged user, we will have to compile from source.</p>
<h4>Download the source:</h4>
<pre>cd ~/tmp
wget <a class="external free" title="http://www.kernel.org/pub/software/scm/git/git-1.5.5.tar.gz" rel="nofollow" href="http://www.kernel.org/pub/software/scm/git/git-1.5.5.tar.gz">http://www.kernel.org/pub/software/scm/git/git-1.5.5.tar.gz</a></pre>
<h4>Unzip the package:</h4>
<pre>tar xvzf git-1.5.5.tar.gz</pre>
<h4>Build the package:</h4>
<pre>cd  git-1.5.5
./configure --prefix=$<strong></strong>HOME/opt
make
make install</pre>
<p>If <code>~/opt/bin</code> isn&#8217;t currently part of your path, add it to your .bashrc file:</p>
<pre>vi ~/.bashrc

PATH=$PATH:~/opt/bin</pre>
<p>Then reload your .bashrc file to reload your path:</p>
<pre>source ~/.bashrc</pre>
<p><em>You will need a dedicated IP address to clone remote branches on standard GIT ports.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://bluehosthacks.com/howto/how-to-install-git/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
