<div>Hey Folks,</div>
<div>&nbsp;</div>
<div>I&#39;m deploying a camping app on an internal Apache2 + FastCGI server at my office.&nbsp; Of course, on my Mac&nbsp;it works great, but I can&#39;t get things to work with Apache and FCGI.&nbsp; I&#39;ve followed the directions on why&#39;s page documenting how to do this, but I&#39;m getting the following error in my Apache 
error.log file:</div>
<div>&nbsp;</div>
<div>FastCGI: (dynamic) server &quot;/var/www/campapp/dispatch.fcgi&quot; has failed to remain running for 30 seconds given 3 attempts</div>
<div>&nbsp;</div>
<div>If I just go run the dispatch.fcgi file, I get no output.&nbsp; I hit enter and I&#39;m back to the prompt.&nbsp; In my web browser, this all shows up as a 500 error.</div>
<div>&nbsp;</div>
<div>Anyone have an idea?&nbsp; Here is a copy of my dispatch file:</div>
<div>&nbsp;</div>
<div>#!/usr/bin/ruby</div>
<div>require &#39;rubygems&#39;</div>
<div>require &#39;camping/fastcgi&#39;</div>
<div>&nbsp;</div>
<div>current = File.direname(__FILE__)</div>
<div>&nbsp;</div>
<div>Camping::Models::Base.establish_connection :adapter =&gt; &#39;sqllite3&#39;, :database =&gt; File.expand_path(current+ &#39;/camping.db&#39;)</div>
<div>Camping::FastCGI.server(current)</div>
<div>&nbsp;</div>
<div>Thanks a lot!</div>
<div>-Brian</div>