<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Ruby Asylum: Beast Forum Installation (Dedicated cPanel server)</title>
    <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>A place for those crazy about Ruby</description>
    <item>
      <title>Beast Forum Installation (Dedicated cPanel server)</title>
      <description>&lt;p&gt;&lt;em&gt;This version of Beast forum requires Ruby, Rails and FastCGI with MySQL 4.1 series.  If your dedicated server does not already have Ruby and Rails installed on it, you can contact &lt;a href="mailto:dedicated@lunarpages.com"&gt;dedicated@lunarpages.com&lt;/a&gt; to request an installation.  Please provide the last 4 digits of your card on file for ownership confirmation along with your dedicated server domain name or account username. Managed addon customers have 1 free script installation available to them.  Non-managed addon customers would pay $75 per hour for the script.  Ruby and Rails with FastCGI support takes approximately 1 hour to install.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;A. Beast forum requires redcloth gem.  This gem can be installed by the following in shell if you do not already have it:&lt;br /&gt;
&lt;code&gt;gem install redcloth&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;B. Creating your database for Beast forum:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Log into cPanel and click on &lt;strong&gt;MySQL Databases&lt;/strong&gt; icon:&lt;/li&gt;
&lt;center&gt;&lt;img src="http://rubyasylum.com/images/mysqldatabases.gif" alt="MySQL Databases" /&gt;&lt;/center&gt;
&lt;li&gt;As per the example below, enter &lt;span style="color:red"&gt;forum&lt;/span&gt; in the "New Database" field under &lt;em&gt;Current Databases&lt;/em&gt; area, then click "Create Database" button.  Your full database name will then show as &lt;span style="color:red"&gt;cPaneluser_forum&lt;/span&gt;.&lt;/li&gt;
&lt;center&gt;&lt;img src="http://rubyasylum.com/images/currentdatabases-forum.gif" alt="Curent Databases" /&gt;&lt;/center&gt;
&lt;li&gt;Under &lt;em&gt;Current Users&lt;/em&gt; area as seen in the example below, enter &lt;span style="color:red"&gt;forum&lt;/span&gt; for the "Username" field and enter a password that you write in your notes for the "Password" field, then click "Create User" button.  Your full database user's name will then show as &lt;span style="color:red"&gt;cPaneluser_forum&lt;/span&gt;.&lt;/li&gt;
&lt;center&gt;&lt;img src="http://rubyasylum.com/images/currentusers-forum.gif" alt="Curent Users" /&gt;&lt;/center&gt;
&lt;li&gt;Under &lt;em&gt;Add Users to Your Database&lt;/em&gt; area as shown below, select in the "User" dropdown &lt;span style="color:red"&gt;cPaneluser_forum&lt;/span&gt; and select in the "Database" dropdown &lt;span style="color:red"&gt;cPaneluser_forum&lt;/span&gt;, then click "Add User to Database" button.&lt;/li&gt;
&lt;center&gt;&lt;img src="http://rubyasylum.com/images/adduserstoyourdatabases-forum.gif" alt="Add Users to Your Databases" /&gt;&lt;/center&gt;
&lt;/ol&gt;
&lt;/p&gt;

&lt;p&gt;C. Installing Beast forum:&lt;br /&gt;
&lt;code&gt;cd /home/user&lt;br /&gt;
svn checkout http://svn.techno-weenie.net/projects/beast/trunk forum&lt;br /&gt;
cd forum&lt;br /&gt;
rake freeze_edge&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Please replace &lt;span style="color:red"&gt;user&lt;/span&gt; with your cPanel username whenever user is noted.&lt;/p&gt;

&lt;p&gt;D. Edit dispatch.fcgi to fix path to Ruby:&lt;br /&gt;
&lt;code&gt;cd /home/user/forum/public&lt;br /&gt;
vi dispatch.fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Change the top variable:&lt;br /&gt;
&lt;code&gt;#!/opt/usr/bin/ruby&lt;/code&gt;&lt;br /&gt;
to&lt;br /&gt;
&lt;code&gt;#!/usr/local/bin/ruby&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Save the file, then check the file has 755 file permissions:&lt;br /&gt;
&lt;code&gt;ls -l&lt;br /&gt;
chmod 755 dispatch.fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;E. Ensure .htaccess has right dispatch.fcgi entry:&lt;br /&gt;
&lt;code&gt;vi .htaccess&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Change:&lt;br /&gt;
&lt;code&gt;RewriteRule ^(.*)$ dispatch.cgi [QSA,L]&lt;/code&gt;&lt;br /&gt;
to&lt;br /&gt;
&lt;code&gt;RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Save the file.&lt;/p&gt;

&lt;p&gt;F. Edit dispatch.rb file to fix path to Ruby:&lt;br /&gt;
&lt;code&gt;cd /home/user/forum/public&lt;br /&gt;
vi dispatch.rb&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Change the top variable:&lt;br /&gt;
&lt;code&gt;#!/opt/usr/bin/ruby&lt;/code&gt;&lt;br /&gt;
to&lt;br /&gt;
&lt;code&gt;#!/usr/local/bin/ruby&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Save the file.&lt;/p&gt;

&lt;p&gt;G. Copying the database.example.yml and editing the database.yml file:&lt;br /&gt;
&lt;code&gt;cd /home/user/forum/config&lt;br /&gt;
cp database.example.yml database.yml&lt;br /&gt;
vi database.yml&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Replace whatever it has with the following (the 2 spaces to the left of some of the lines are spaces not tabs, so do not change them to tabs):&lt;br /&gt;
&lt;pre style="font-size:11px"&gt;production:
  database: user_forum
  adapter: mysql
  host: 127.0.0.1
  username: user_forum
  password: mydbuserpass&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Change &lt;span style="color:red"&gt;user&lt;/span&gt; to your cPanel username for lines 2 &amp; 5, then change &lt;span style="color:red"&gt;dbuserpass&lt;/span&gt; to have your database user's password (the one you entered in Section B, Step 3).&lt;/p&gt;

&lt;p&gt;Save the file.&lt;/p&gt;

&lt;p&gt;H. Change environment.rb to have the forum in production:&lt;br /&gt;
&lt;code&gt;cd /home/user/forum/config&lt;br /&gt;
vi environment.rb&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Change the following:&lt;br /&gt;
&lt;code&gt;#ENV['RAILS_ENV'] ||= 'production'&lt;/code&gt;&lt;br /&gt;
to&lt;br /&gt;
&lt;code&gt;ENV['RAILS_ENV'] ||= 'production'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Save the file.&lt;/p&gt;

&lt;p&gt;I. Symlink the directories (if you will be using Beast forum at &lt;a href="http://domain.com/"&gt;http://domain.com&lt;/a&gt;):&lt;br /&gt;
&lt;code&gt;cd /home/user&lt;br /&gt;
mv public_html public_html.bak&lt;br /&gt;
ln -s /home/user/forum/public public_html&lt;br /&gt;
mkdir public_html/cgi-bin&lt;br /&gt;
chown -R user:user /home/user/forum&lt;br /&gt;
chmod 755 /home/user/forum &amp;&amp; chmod 755 /home/user/forum/public&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If you will be using Beast forum at &lt;a href="http://domain.com/folder/"&gt;http://domain.com/folder/&lt;/a&gt;, do the following instead:&lt;br /&gt;
&lt;code&gt;cd /home/user/public_html&lt;br /&gt;
ln -s ../forum/public folder&lt;br /&gt;
chown -R user:user /home/user/forum&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;J. Import the database schema:&lt;br /&gt;
&lt;code&gt;cd /home/user/forum&lt;br /&gt;
rake db:schema:load RAILS_ENV=production&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;K. Beast forum should now be working&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Go to your domain (either &lt;a href="http://domain.com/"&gt;http://domain.com/&lt;/a&gt; or &lt;a href="http://domain.com/folder/"&gt;http://domain.com/folder/&lt;/a&gt; depending on which you chose in Section I), and Beast forum should be working.&lt;/li&gt;
&lt;li&gt;If Beast forum is not working, your app might be cached, so restart apache:&lt;br /&gt;
&lt;code&gt;/etc/init.d/httpd stop&lt;br /&gt;
killall -9 httpd&lt;br /&gt;
/etc/init.d/httpd startssl&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;You can now sign up to the forum as the first signup automatically becomes the admin.  You will be told you are sent an email, but I've found that this first account (the admin one) doesn't receive any activation email.  Other signups (after the first one) should receive an email to activate the account before being able to log into it.&lt;/li&gt;
&lt;/ol&gt;
&lt;/p&gt;

&lt;p&gt;You can see an example of Beast forum at &lt;a href="http://miraenda.com/"&gt;miraenda.com&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Sep 2006 13:01:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:cb73cbc7-0256-4eb1-8299-1d70f090cf89</guid>
      <author>Miraenda</author>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server</link>
      <category>server</category>
      <category>dedicated</category>
      <trackback:ping>http://rubyasylum.com/articles/trackback/21</trackback:ping>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by social bookmarking</title>
      <description>g with your dedicated server domain name or account username. Managed addon cu</description>
      <pubDate>Thu, 09 Sep 2010 07:01:48 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:658bdda4-33eb-4417-9f05-658bce7f5503</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3138</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by halloween contacts</title>
      <description>What hosting offers dedicated cpanel server with the most cheap fee?
</description>
      <pubDate>Wed, 08 Sep 2010 21:23:30 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ebaa0426-6652-43f8-ad9e-7aa252385497</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3131</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by softitem</title>
      <description>Really useful info.
                    
&lt;a href='http://www.softitem.com/' rel="nofollow"&gt;http://www.softitem.com/&lt;/a&gt;      </description>
      <pubDate>Wed, 08 Sep 2010 19:52:12 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:25767b40-75ea-48f2-8b16-9d4c30dad6a9</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3130</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by lv cosmic blossom</title>
      <description>thank you very much</description>
      <pubDate>Wed, 08 Sep 2010 19:30:16 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:3a8081c6-4d5a-4cf6-a9b0-71f1193302bf</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3116</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by louis vuitton neverfull gm</title>
      <description>You need time to creat that interesting and additionally real effort to make such a good article. </description>
      <pubDate>Wed, 08 Sep 2010 19:29:12 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:a3126f66-fdff-4e8e-80a0-cbdef1b779b1</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3115</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by louis vuitton outlet</title>
      <description>Really useful info. I like the layout of your site too.</description>
      <pubDate>Wed, 08 Sep 2010 19:28:15 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:f5a0af36-2e00-439b-9894-218da268909f</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3114</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by admin@uggbootsales.net</title>
      <description>Welcome &lt;a href='http://www.uggbootsales.net' rel="nofollow"&gt;www.uggbootsales.net&lt;/a&gt; !uggbootsales is a online UGG AUTHORIZED RETAILER.
Stock directly from the manufacturer,Original Package,Quality assurance, 
up to 30% off+Free shipping+7 days Delivery as usual,100% Satisfaction.
UGG Classic Tall Boots only US$89.99+free shipping
&lt;a href='http://www.uggbootsales.net/ugg-classic-tall-boots-c-21.html' rel="nofollow"&gt;http://www.uggbootsales.net/ugg-classic-tall-boots-c-21.html&lt;/a&gt;
UGG Classic Short Boots only US$88+free shipping</description>
      <pubDate>Wed, 08 Sep 2010 05:46:29 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:079920b3-5ce7-4b28-b5c9-64ef8b573042</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3105</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by billig tandblekning</title>
      <description>Nice post,i had bookmarked your blog end.i like very much..........</description>
      <pubDate>Wed, 08 Sep 2010 01:37:49 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:b755047d-7e24-46e4-b732-1e9c2849ffad</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3097</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by wholesale jeans</title>
      <description>
Always good to see, this was  a brilliant post. In theory I would like to write like this too. You need time to creat that interesting and additionally real effort to make such a good article.</description>
      <pubDate>Tue, 07 Sep 2010 02:17:39 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:1a525256-9771-44f9-8770-43313ef828ac</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3087</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by cheap cirque du soleil tickets</title>
      <description>Well worth to read this article, thanks for sharing this information. With this article you offered me got a chance to know about this, anyway i say Great Article! and waiting for you next article about this interesting subject.
</description>
      <pubDate>Tue, 07 Sep 2010 00:12:41 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:b04b5502-9fe5-41a8-b305-b0e6676eb20b</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3084</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by http://www.nflcoltsshop.com/colts-jerseys-c-32.html</title>
      <description>thanks for sharing
&lt;a href='http://www.nflcoltsshop.com/colts-jerseys-c-32.html' rel="nofollow"&gt;Colts Jersey&lt;/a&gt;</description>
      <pubDate>Mon, 06 Sep 2010 17:42:14 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:df29fd5f-9945-4ec7-aded-c91447da9a99</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3079</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by http://www.nflcoltsshop.com/colts-jerseys-c-32.html</title>
      <description>thanks for sharing
welcome to&lt;a href='http://www.nflcoltsshop.com/colts-jerseys-c-32.html' rel="nofollow"&gt;http://www.nflcoltsshop.com/colts-jerseys-c-32.html&lt;/a&gt;
&lt;a href='http://www.nflvikingsjerseys.com/' rel="nofollow"&gt;http://www.nflvikingsjerseys.com/&lt;/a&gt;
&lt;a href='http://www.nflsteelersshop.com/steelers-jerseys-c-32.html' rel="nofollow"&gt;http://www.nflsteelersshop.com/steelers-jerseys-c-32.html&lt;/a&gt;</description>
      <pubDate>Mon, 06 Sep 2010 17:39:36 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:2ae5878f-499b-410c-876f-5bc2200dd167</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3078</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Hochzeitsfotograf Starnberg</title>
      <description>The information here was very useful. I am noticing that you have a top notch info website. </description>
      <pubDate>Mon, 06 Sep 2010 15:32:46 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:9a06596b-ee03-4b6a-8aaf-984e321d05a4</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3077</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Toning Shoes</title>
      <description>In recent time the web power is driving the whole world. Internet became the part and parcel of our daily life. And the powerful search Auto Fußmatten selbst gestalten engine Google is making our lives more easy and became invincible. The language translation concept made the search engine more effective</description>
      <pubDate>Mon, 06 Sep 2010 13:03:24 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:913386df-ce7f-490e-8fb6-ba5cf609a2f5</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3076</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Auto Fußmatten selbst gestalten</title>
      <description>this was work! you did a good job, a pity that you stopped blogging! Thanks anyway.. </description>
      <pubDate>Sun, 05 Sep 2010 04:57:33 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:cfdf8de2-1bfb-4a87-b3d8-7ecdd74efd0b</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3057</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Sell Mobiles for Cash</title>
      <description>a perfect quality thesis when scholars are studying at the high school. Therefore, your superior idea related to this post should be a very good issue for the thesis pdf composers. </description>
      <pubDate>Sat, 04 Sep 2010 09:33:19 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ed18ea63-f574-4c1e-93b3-752fb3889b93</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3051</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Loans Tesco</title>
      <description>&lt;a href='http://loanstesco.com/' rel="nofollow"&gt;</description>
      <pubDate>Sat, 04 Sep 2010 02:37:02 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:acf96e1f-c6f7-4390-bba0-e0584ab76663</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3048</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Jamal Malic</title>
      <description>&lt;a href='http://marksspencermoney.com/' rel="nofollow"&gt;marks and spencer money&lt;/a&gt;</description>
      <pubDate>Sat, 04 Sep 2010 02:36:33 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:6da6bee9-2862-4cf8-9ad0-4fa24f88d16d</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3047</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by fancisco</title>
      <description>&lt;a href='http://www.most-fashionable.com' rel="nofollow"&gt;http://www.most-fashionable.com&lt;/a&gt;</description>
      <pubDate>Fri, 03 Sep 2010 22:11:10 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:c970d188-b8d2-4a81-a9d2-7d2ad138b157</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3046</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by salon providence ri</title>
      <description>I really liked this blog very much since it is very interesting and useful too. keep posting. &lt;a href='www.luminoussalonandspa.com' rel="nofollow"&gt;salon providence ri&lt;/a&gt;</description>
      <pubDate>Fri, 03 Sep 2010 20:57:55 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:fcf8682a-3bf3-4bbf-a390-8b7f78dfeb96</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3045</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by cheap nfl jerseys</title>
      <description>&lt;a href='http://www.dreamjerseysshop.com' rel="nofollow"&gt;NFL Jerseys for sale&lt;/a&gt;
That's really good</description>
      <pubDate>Fri, 03 Sep 2010 19:07:54 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:f4b8c4ad-32e8-4540-bf19-d973ecc387a6</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3044</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Reggie Bush Jersey</title>
      <description>Thanks for posting this. &lt;a href='http://www.nflcowboysjerseys.com/marion-barber-jerseys-c-1_18.html' rel="nofollow"&gt;Marion Barber Jerseys&lt;/a&gt; Very nice recap of some of the key points in my talk.
I hope you and your readers find it useful! Thanks again 
</description>
      <pubDate>Fri, 03 Sep 2010 19:04:18 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:e9ec644a-ed1c-4fc4-88b1-6f9d79bbbb5d</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3043</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Saints shop</title>
      <description>Thanks for posting this. &lt;a href='http://www.nflsaintsshop.com/saints-jerseys' rel="nofollow"&gt;Saints Jerseys&lt;/a&gt;Very nice recap of some of the key points in my talk. I hope you and your readers find it useful! Thanks again
</description>
      <pubDate>Fri, 03 Sep 2010 19:02:27 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:a0611239-ac35-4de3-86ea-599340d5d1b9</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3042</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by wood tile</title>
      <description>a perfect quality thesis when scholars are studying at the high school. Therefore, your superior idea related to this post should be a very good issue for the thesis pdf composers. .</description>
      <pubDate>Fri, 03 Sep 2010 13:35:47 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:9e84f924-ed2b-4650-8dc0-c58af99d7512</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3041</link>
    </item>
    <item>
      <title>"Beast Forum Installation (Dedicated cPanel server)" by Business Telephone Systems</title>
      <description>Great post! Really useful info. I like the layout of your site too.</description>
      <pubDate>Fri, 03 Sep 2010 10:24:47 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:92f8f6eb-b2ab-46c2-ae41-cfae1f896544</guid>
      <link>http://rubyasylum.com/articles/2006/09/14/beast-forum-installation-dedicated-cpanel-server#comment-3040</link>
    </item>
  </channel>
</rss>
