<?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>the jackol's den &#187; perl</title>
	<atom:link href="http://www.thejackol.com/tag/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thejackol.com</link>
	<description>01100010 01101100 01100101 01101000</description>
	<lastBuildDate>Wed, 28 Dec 2011 03:40:08 +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 BugZilla 3.4.1 on Dreamhost</title>
		<link>http://www.thejackol.com/2009/08/24/installing-bugzilla-3-4-1-on-dreamhost/</link>
		<comments>http://www.thejackol.com/2009/08/24/installing-bugzilla-3-4-1-on-dreamhost/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:17:18 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bugzilla]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=630</guid>
		<description><![CDATA[Here&#8217;s a quick guide on installing Bugzilla 3.4.1 on Dreamhost. Fire up a shell and follow these steps (these command are from http://wiki.dreamhost.com/Bugzilla) in the directory of the domain you want to install Bugzilla in. mkdir bugs cd bugs wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-STABLE.tar.gz tar zxf bugzilla-STABLE.tar.gz rm bugzilla-STABLE.tar.gz mv bugzilla*/* . Next, follow setups 6, 7, 8 [...]]]></description>
			<content:encoded><![CDATA[	<p>Here&#8217;s a quick guide on installing Bugzilla 3.4.1 on Dreamhost.</p>

	<p>Fire up a shell and follow these steps (these command are from <a href="http://wiki.dreamhost.com/Bugzilla">http://wiki.dreamhost.com/Bugzilla</a>) in the directory of the domain you want to install Bugzilla in.</p>

<pre><code>mkdir bugs
cd bugs
wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-STABLE.tar.gz
tar zxf bugzilla-STABLE.tar.gz
rm bugzilla-STABLE.tar.gz
mv bugzilla*/* .
</code></pre>

	<p>Next, follow setups 6, 7, 8 and 9 from the <a href="http://wiki.dreamhost.com/Bugzilla">Bugzilla Dreamhost wiki</a>.</p>

	<p>Now you will need to manually install <code>Module::Build</code> and <code>DateTime::Locale</code> for Bugzilla to work. To do this, first get the latest <span class="caps">CPAN</span> download links for the modules.</p>

	<p>For Module::Build, you&#8217;ll find the download link here: <a href="http://search.cpan.org/~kwilliams/Module-Build/">http://search.cpan.org/~kwilliams/Module-Build/</a><br />
For DateTime::Locale, you&#8217;ll find the download at: <a href="http://search.cpan.org/~drolsky/DateTime-Locale-0.43/">http://search.cpan.org/~drolsky/DateTime-Locale-0.43/</a></p>

	<p>I&#8217;ve used the latest available builds at the time of this writing for the example below. Next, follow these steps in the Bugzilla installation directory:</p>

<pre><code>mkdir tmp
cd tmp
PERL5LIB=/full-path-to-bugzilla-install-dir/lib
export PERL5LIB
wget http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Module-Build-0.31.tar.gz
tar xzf Module-Build-0.31.tar.gz
cd Module-Build-0.31
perl Makefile.pl
make
make test
make install
cd ..
rm -rf Module-Build*
</code>
<code># To install DateTime::Locale
wget http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-Locale-0.43.tar.gz
tar zxf DateTime-Locale-0.43.tar.gz
cd DateTime-Locale-0.43
perl Makefile.pl
make
make test
make install
cd ../..
rm -rf tmp
</code></pre>

	<p>Re-run ./checksetup.pl and then fix permissions as in the Dreamhost Bugzilla wiki page:</p>

<pre><code>for i in docs graphs images js skins; do find $i -type d -exec chmod o+rx {} \; ; done
for i in jpg gif css js png html rdf xul; do find . -name \*.$i -exec chmod o+r {} \; ; done
find . -name .htaccess -exec chmod o+r {} \;
chmod o+x . data data/webdot
</code></pre>

	<p>You should now have a working Bugzilla installation at yourdomain.com/bugs.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/08/24/installing-bugzilla-3-4-1-on-dreamhost/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

