<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">Tracks</title>
    <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/" />
    <link rel="self" type="application/atom+xml" href="http://www.getontracks.org/forums/atom/" />
    <updated></updated>
    <rights>Copyright (c) 2009</rights>
    <generator uri="http://www.pmachine.com/" version="1.6.6">ExpressionEngine</generator>
    <id>tag:getontracks.org,2009:06:12</id>


    <entry>
      <title>Rewrite errors and SSL support &#63;&#63;</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/425/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.425</id>
      <published>2009-06-06T19:36:49Z</published>
      <updated></updated>
      <author><name>Smith Boswell</name></author>
      <content type="html">
      <![CDATA[
        <p>I stumbled upon this <a href="http://www.jejik.com/articles/2008/09/how_to_install_tracks_on_debian_lenny_with_apache_mod_fcgid/">tracks installation guide</a> for tracks and became determined to run it on my test server.&nbsp; Now, I do have tracks up and running.&nbsp; Usually, I enjoy solving configuration and programming issues without assistance but would now like forum input since tracks is about effective time management to begin with.&nbsp; Specifically, I think I am experiencing errors with URI rewrites within tracks.&nbsp; This is my primary question.</p>

<p>Errors Encountered:</p>

<p>deleting contexts or actions fails<br />
dragging contexts fails</p>

<p>Received this error once ...</p>

<p>&#8220;Template is missing Missing layout layouts/standard.erb in view path */tracks/app/views:&#8220;</p>

<p># and the file is in the specified directory</p>

<p>My answers to Posting Guidelines questions:</p>

<p>1. Tracks Version:&nbsp; Tracks 1.7 - Current Stable Version</p>

<p>2. Operating System &#40;OS&#41; Platform: Gnu/Linux - Debian</p>

<p>3. Browser:&nbsp; Konqueror 3.5.9 (Using KDE 3.5.10)</p>

<p>4. Other relevant information:</p>

<p>Apache Server Version: Apache/2.2.9 (Debian) mod_python/3.3.1 Python/2.5.2 PHP/<br />
&nbsp;   5.2.6-1+lenny3 with Suhosin-Patch Phusion_Passenger/2.2.2</p>

<p>default &amp;&amp; default apache sites-enabled / sites-available configuration files disabled</p>

<p>ruby1.8 &amp;&amp; passenger &amp;&amp; mod_fcgid enabled</p>

<p>Tracks specific:</p>

<p>tracks .htaccess file disabled<br />
# site: &#8220;&#8221; directive commented out in tracks/config/site.yml</p>

<p>####################### Current httpd-vhosts.conf file ######################</p>

<p>NameVirtualHost 127.0.0.1:80</p>

<p>&lt;VirtualHost 127.0.0.1:80&gt;<br />
&nbsp;   ServerAdmin webmaster@localhost<br />
&nbsp;   ServerName http://*.*.com:80  # edited dnsname for post<br />
&nbsp;   DocumentRoot */tracks/public  # edited directory info * for post<br />
&nbsp;   ServerSignature On</p>

<p># Possible values include: debug, info, notice, warn, error, crit,<br />
# alert, emerg.</p>

<p>&nbsp;   LogLevel debug</p>

<p>&nbsp;   ErrorLog &#8220;*/tracks_error_log&#8221;&nbsp;  &nbsp;  &nbsp;  # edited directory info * for post<br />
&nbsp;   CustomLog &#8220;*/tracks_access_log&#8221; common &nbsp;   # edited directory info * for post</p>

<p>#&nbsp;   LoadModule fcgid_module modules/mod_fcgid.so ## Commented Out ## Module Loaded in */mods-enabled ##<br />
#&nbsp;   SocketPath /tmp/fcgidsock<br />
#&nbsp;   SharememPath /tmp/fcgidshm<br />
&nbsp;  &nbsp;  &nbsp; DefaultInitEnv RAILS_ENV production<br />
&nbsp;  &nbsp;  &nbsp; AddHandler fcgid-script .fcgi</p>

<p>&nbsp;  &nbsp;  &nbsp; &lt;Files *.fcgi&gt;<br />
&nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;   SetHandler fcgid-script<br />
&nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;   Options ExecCGI +FollowSymLinks<br />
&nbsp;  &nbsp;  &nbsp; &lt;/Files&gt;<br />
#</p>

<p>&nbsp;  &nbsp;  &nbsp; &lt;Directory /var/www/tracks/public&gt;<br />
&nbsp;  &nbsp;  &nbsp; Options Indexes FollowSymLinks MultiViews<br />
&nbsp;  &nbsp;  &nbsp;  &nbsp;  PassengerEnabled on<br />
&nbsp;  &nbsp;  &nbsp;  &nbsp;  AllowOverride None &nbsp;  &nbsp; <br />
# AllowOverride All ## &lt;&#8212;Makes Tracks&#8217;s .htaccess file work.<br />
# Other Options are: AuthConfig Indexes Limit, None</p>

<p>&nbsp;  &nbsp;  &nbsp; Order allow,deny<br />
&nbsp;  &nbsp;  &nbsp; Allow from all<br />
 
&nbsp;  &nbsp;  &nbsp;  &nbsp;  AddHandler fcgid-script .fcgi</p>

<p>&nbsp;  &nbsp;  &nbsp; # You need mod_fcgid version &gt;= 2.1 to support arguments &#8220;xxx/dispatch.fcgi&#8221; in FCGIWrapper<br />
&nbsp;  &nbsp;  &nbsp; FCGIWrapper &#8220;/usr/bin/ruby1.8 /var/www/tracks/public/dispatch.fcgi&#8221; .fcgi</p>

<p>&nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;   RewriteEngine on</p>

<p>&nbsp;  &nbsp;  &nbsp; # For better performance replace the dispatcher with the fastcgi one</p>

<p>&nbsp;  &nbsp;  &nbsp; RewriteCond %&#123;REQUEST_FILENAME&#125; !-f<br />
#&nbsp;  &nbsp;  &nbsp; RewriteRule ^$ index.html [QSA]<br />
#&nbsp;  &nbsp;  &nbsp; RewriteRule ^([^.]+)$ $1.html [QSA]<br />
#&nbsp;  &nbsp;  &nbsp; RewriteRule ^/?(.*)$ dispatch.fcgi [QSA,L] # Testing<br />
&nbsp;  &nbsp;  &nbsp; RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]</p>

<p>#&nbsp;  &nbsp;  &nbsp; RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]<br />
#&nbsp;  &nbsp;  &nbsp; RewriteRule ^$ index.html [QSA]<br />
#&nbsp;  &nbsp;  &nbsp; RewriteRule ^([^.]+)$ $1.html [QSA]</p>

<p>&nbsp;  &nbsp;  &nbsp; &lt;/Directory&gt;</p>

<p>&lt;/VirtualHost&gt;</p>

<p>#################### End httpd-vhosts.conf #########################</p>

<p><br />
Secondarily, ... I would like to run tracks through https://*:443 but ...</p>

<p>&#8220;# SSL name based virtual hosts are not yet supported,&#8220; - comment from Apache ports.conf file.</p>

<p>and I am not certain how to configure tracks as an ip based virtual hosts in order to implement ssl.&nbsp; All of my virtual hosts are name based on my local loopback interface 127.0.0.1.&nbsp;  127.0.1.1 points to debian in the host file &#40;a Gnome requirement&#41; and I use my server for web development.&nbsp; I am in a home office and my router uses class C addressing 192.168.*.*.</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Migrate DB using YAML</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/219/" />      
      <id>tag:getontracks.org,2008:forums/viewthread/.219</id>
      <published>2008-04-14T12:33:03Z</published>
      <updated></updated>
      <author><name>amarillo</name></author>
      <content type="html">
      <![CDATA[
        <p>Hi!</p>

<p>I just started using Tracks and GTD some days ago and i love it. Until now I used MorphExchange as a host, but it wasn&#8217;t reachable yesterday and it&#8217;s also rather slow. Since that&#8217;s not the idea of an robust storage, i decided to host tracks on my own. <br />
The setup took me about 6 hours, but it&#8217;s done <img src="http://www.getontracks.org/images/smileys/wink.gif" width="19" height="19" alt="wink" style="border:0;" /><br />
Now I want to copy all my actions from MorphExchange to my own installation. As you might know, i only have access to the downloadable YAML file on MorphExchange. But I have just no idea how to import this file in my existing DB.</p>

<p>Is there a tutorial anywhere I can follow?</p>

<p>I am running Tracks 1.5 on Ubuntu and Apache2 with MySQL DB.</p>

<p>thanks,<br />
amarillo</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Following c00i90wn&#8217;s guide, problem with rake db_schema_import</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/421/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.421</id>
      <published>2009-06-04T01:13:55Z</published>
      <updated>2009-06-04T22:11:16Z</updated>
      <author><name>wizardpc</name></author>
      <content type="html">
      <![CDATA[
        <p>I am relatively new at linux, and completely new at ruby, so assume you&#8217;re talking to your grandmother when asking me questions :D</p>

<p>Ubuntu 9.04, ruby 1.8.7, mysql 5, tracks 1.7</p>

<p>I&#8217;ve gotten to the line in his guide (<a href="http://www.cooldown.com.ar/2006/12/16/install-tracks-on-ubuntu-or-debian/">http://www.cooldown.com.ar/2006/12/16/install-tracks-on-ubuntu-or-debian/</a>) that says &#8220;sudo rake db_schema_import&#8221;</p>

<p>It fails. Badly, I think. The one thing I did differently from the guide is that I downloaded tracks from the main tracks page by clicking on the &#8220;Get Tracks 1.7&#8221; button, rather than installing subversion and going from there.</p>

<p>This is the output:<br />
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">user</span><span style="color: #007700">@</span><span style="color: #0000BB">fatboy</span><span style="color: #007700">:/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">sudo&nbsp;rake&nbsp;db_schema_import&nbsp;</span><span style="color: #007700">--</span><span style="color: #0000BB">trace<br /></span><span style="color: #007700">(</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">rake&nbsp;aborted</span><span style="color: #007700">!<br /></span><span style="color: #0000BB">Don</span><span style="color: #DD0000">'t&nbsp;know&nbsp;how&nbsp;to&nbsp;build&nbsp;task&nbsp;'</span><span style="color: #0000BB">db_schema_import</span><span style="color: #DD0000">'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1728:in&nbsp;`&#91;&#93;'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.7</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2050</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke_task'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">top_level</span><span style="color: #DD0000">'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in&nbsp;`each'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.7</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2029</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">top_level'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">standard_exception_handling</span><span style="color: #DD0000">'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2023:in&nbsp;`top_level'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.7</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2001</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">run'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">standard_exception_handling</span><span style="color: #DD0000">'<br />/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1998:in&nbsp;`run'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.7</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">:</span><span style="color: #0000BB">31<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">:</span><span style="color: #0000BB">19</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">load'<br />/usr/bin/rake:19<br />user@fatboy:/var/www/tracks$&nbsp;</span>
</span>
</code></div><p></p>

<p>I can&#8217;t find anything on the forums or on the intertubes that has been remotely helpful for this specific error. I am not even sure what the error is indicating since I dont know how rake works.</p>

<p>Any direction would be extremely helpful.</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Where is my CSS &#63;&#63;&#63; !!</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/420/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.420</id>
      <published>2009-06-03T15:59:17Z</published>
      <updated>2009-06-03T18:27:10Z</updated>
      <author><name>jtdintulsa</name></author>
      <content type="html">
      <![CDATA[
        <p>Just installed Tracks and it works except it does not have any Style sheets ..Just black and white text.</p>

<p>&lt;VirtualHost 10.2.111.1:80&gt;<br />
&nbsp; DocumentRoot /var/www/tracks/public<br />
&nbsp; ServerName tracks.dud.net<br />
&nbsp; ServerSignature On<br />
&nbsp; LogLevel warn<br />
&nbsp; ErrorLog /var/log/apache2/error.log<br />
&nbsp; CustomLog /var/log/apache2/access.log combined<br />
&nbsp; AddHandler fcgid-script .fcgi<br />
&nbsp; DefaultInitEnv RAILS_ENV production</p>

<p>&nbsp; &lt;Files *.fcgi&gt;<br />
&nbsp; SetHandler fcgid-script<br />
&nbsp; Options ExecCGI +FollowSymLinks<br />
&nbsp; &lt;/Files&gt;</p>

<p>&nbsp; &lt;Directory /var/www/tracks/public&gt;<br />
&nbsp;  &nbsp;  &nbsp; RewriteEngine on<br />
&nbsp;  &nbsp;  &nbsp; RewriteCond %&#123;REQUEST_FILENAME&#125; !-f<br />
&nbsp;  &nbsp;  &nbsp; RewriteRule ^/(.*) dispatch.fcgi [QSA,L]<br />
 &lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;<br />
###<br />
config/environment.rb </p>

<p>config.action_controller.relative_url_root = &#8220;tracks.dud.net/tracks/public&#8221;</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>HOW TO: Install Tracks on Ubuntu with Apache + MySQL</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/424/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.424</id>
      <published>2009-06-06T13:51:27Z</published>
      <updated>2009-06-14T12:31:34Z</updated>
      <author><name>touficjohn</name></author>
      <content type="html">
      <![CDATA[
        <p>Took me ages to figure out how to install it correctly but I got there in the end!<br />
I hope others will find it useful and maybe save some time! <img src="http://www.getontracks.org/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" /></p>

<p><a href="http://tjn.me/2009/06/install-tracks-17-on-ubuntu/">http://tjn.me/2009/06/install-tracks-17-on-ubuntu/</a></p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Apache &amp;amp; fcgid problems</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/415/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.415</id>
      <published>2009-06-01T21:30:51Z</published>
      <updated></updated>
      <author><name>Gleis</name></author>
      <content type="html">
      <![CDATA[
        <p>Hallo !</p>

<p>I&#8217;ve been trying to install Tracks in combination with Apache2 for several hours now and decided to aquire some help from the forum:</p>

<p>This is my vHost:</p>

<p></p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">&lt;</span><span style="color: #0000BB">VirtualHost&nbsp;&#91;</span><span style="color: #007700">::</span><span style="color: #0000BB">&#93;</span><span style="color: #007700">:</span><span style="color: #0000BB">443</span><span style="color: #007700">&gt;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">ServerName&nbsp;gtd</span><span style="color: #007700">.</span><span style="color: #0000BB">ipv6</span><span style="color: #007700">.</span><span style="color: #0000BB">myhost</span><span style="color: #007700">.</span><span style="color: #0000BB">de<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">gtd</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/public<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">ServerSignature&nbsp;On<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;LogLevel&nbsp;warn<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">log</span><span style="color: #007700">/</span><span style="color: #0000BB">apache2</span><span style="color: #007700">/</span><span style="color: #0000BB">error</span><span style="color: #007700">.</span><span style="color: #0000BB">log<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CustomLog&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">log</span><span style="color: #007700">/</span><span style="color: #0000BB">apache2</span><span style="color: #007700">/</span><span style="color: #0000BB">access</span><span style="color: #007700">.</span><span style="color: #0000BB">log&nbsp;combined<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AddHandler&nbsp;fcgid</span><span style="color: #007700">-</span><span style="color: #0000BB">script&nbsp;</span><span style="color: #007700">.</span><span style="color: #0000BB">fcgi<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DefaultInitEnv&nbsp;RAILS_ENV&nbsp;production<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">&lt;</span><span style="color: #0000BB">Files&nbsp;</span><span style="color: #007700">*.</span><span style="color: #0000BB">fcgi</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">SetHandler&nbsp;fcgid</span><span style="color: #007700">-</span><span style="color: #0000BB">script<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options&nbsp;ExecCGI&nbsp;</span><span style="color: #007700">+</span><span style="color: #0000BB">FollowSymLinks<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">Files</span><span style="color: #007700">&gt;<br />&nbsp;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;</span><span style="color: #0000BB">Directory&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">gtd</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/public&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">RewriteEngine&nbsp;on<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">f<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RewriteRule&nbsp;</span><span style="color: #007700">^/(.*)&nbsp;</span><span style="color: #0000BB">dispatch</span><span style="color: #007700">.</span><span style="color: #0000BB">fcgi&nbsp;&#91;QSA</span><span style="color: #007700">,</span><span style="color: #0000BB">L&#93;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">Directory</span><span style="color: #007700">&gt;<br /><br />&lt;/</span><span style="color: #0000BB">VirtualHost</span><span style="color: #007700">&gt;&nbsp;</span>
</span>
</code></div><p></p>

<p>And this is the error I get in /var/log/apache2/error.log:</p>

<p><a href="http://pastebin.com/f79913abe">http://pastebin.com/f79913abe</a></p>

<p>All files in</p>

<p>/var/gtd/tracks/db</p>

<p>are writeable for www-data.</p>

<p>Thanks for your help.</p>

<p>I am new to Ruby &amp; Rails.</p>

<p>Regards</p>

<p>Gleis</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Ubuntu 9.04 install failure on rake db:migrate RAILS_ENV=production, help please</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/404/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.404</id>
      <published>2009-05-11T03:33:55Z</published>
      <updated>2009-05-11T04:02:24Z</updated>
      <author><name>duran.goodyear</name></author>
      <content type="html">
      <![CDATA[
        <p>When I run &#8220;rake db:migrate RAILS_ENV=production&#8221; I get the following error messages.<br />
This is on Ubuntu Server 9.04<br />
This is from a recent &#8220;GIT CLONE&#8221; download of tracks 1.7. </p>

<p>Thoughts?<br />
(should I download the zip file from the home page instead?)<br />
Thanks!</p>

<p></p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">duran</span><span style="color: #007700">@</span><span style="color: #0000BB">voltron</span><span style="color: #007700">:/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">sudo&nbsp;rake&nbsp;db</span><span style="color: #007700">:</span><span style="color: #0000BB">migrate&nbsp;RAILS_ENV</span><span style="color: #007700">=</span><span style="color: #0000BB">production&nbsp;</span><span style="color: #007700">--</span><span style="color: #0000BB">trace<br />&#91;sudo&#93;&nbsp;password&nbsp;</span><span style="color: #007700">for&nbsp;</span><span style="color: #0000BB">duran</span><span style="color: #007700">:&nbsp;<br />(</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">rake&nbsp;aborted</span><span style="color: #007700">!<br /></span><span style="color: #0000BB">no&nbsp;such&nbsp;file&nbsp;to&nbsp;load&nbsp;</span><span style="color: #007700">--&nbsp;</span><span style="color: #0000BB">spec</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">/</span><span style="color: #0000BB">spectask<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rubygems</span><span style="color: #007700">/</span><span style="color: #0000BB">custom_require</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">31</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">gem_original_require'<br />/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in&nbsp;</span><span style="color: #007700">`require</span><span style="color: #DD0000">'<br />/var/www/railsapps/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:153:in&nbsp;`require'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">activesupport</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">active_support</span><span style="color: #007700">/</span><span style="color: #0000BB">dependencies</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">521</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">new_constants_in'<br />/var/www/railsapps/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:153:in&nbsp;</span><span style="color: #007700">`require</span><span style="color: #DD0000">'<br />/var/www/railsapps/tracks/lib/tasks/rspec.rake:9<br />/var/www/railsapps/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:142:in&nbsp;`load_without_new_constant_marking'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">activesupport</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">active_support</span><span style="color: #007700">/</span><span style="color: #0000BB">dependencies</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">142</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">load'<br />/var/www/railsapps/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:521:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">new_constants_in</span><span style="color: #DD0000">'<br />/var/www/railsapps/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:142:in&nbsp;`load'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">railties</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">tasks</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">8<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">railties</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">tasks</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">8</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">each'<br />/var/www/railsapps/tracks/vendor/rails/railties/lib/tasks/rails.rb:8<br />/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">gem_original_require</span><span style="color: #DD0000">'<br />/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in&nbsp;`require'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">railsapps</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">Rakefile</span><span style="color: #007700">:</span><span style="color: #0000BB">10<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2149</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">load'<br />/usr/lib/ruby/1.8/rake.rb:2149:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">raw_load_rakefile</span><span style="color: #DD0000">'<br />/usr/lib/ruby/1.8/rake.rb:1897:in&nbsp;`load_rakefile'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">1948</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">standard_exception_handling'<br />/usr/lib/ruby/1.8/rake.rb:1896:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">load_rakefile</span><span style="color: #DD0000">'<br />/usr/lib/ruby/1.8/rake.rb:1880:in&nbsp;`run'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">1948</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">standard_exception_handling'<br />/usr/lib/ruby/1.8/rake.rb:1878:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">run<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">:</span><span style="color: #0000BB">28&nbsp;</span>
</span>
</code></div><p></p>

<p>also&#8230;<br />
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>undefined method `collect&#8217;</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/402/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.402</id>
      <published>2009-05-10T05:03:24Z</published>
      <updated>2009-05-10T05:09:38Z</updated>
      <author><name>brianm</name></author>
      <content type="html">
      <![CDATA[
        <p>I get the following error when installing on Ubuntu 8.04. I&#8217;m so close to completing this install, please help!</p>

<p></p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">sudo&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake&nbsp;db</span><span style="color: #007700">:</span><span style="color: #0000BB">migrate&nbsp;RAILS_ENV</span><span style="color: #007700">=</span><span style="color: #0000BB">production<br /></span><span style="color: #007700">(</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">testing</span><span style="color: #007700">/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">rake&nbsp;aborted</span><span style="color: #007700">!<br /></span><span style="color: #0000BB">undefined&nbsp;method&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">collect'&nbsp;for&nbsp;#&lt;Gem::Version::Requirement:0xb74cb0dc&gt;<br /><br />(See&nbsp;full&nbsp;trace&nbsp;by&nbsp;running&nbsp;task&nbsp;with&nbsp;--trace)&nbsp;</span>
</span>
</code></div><p><br />
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">sudo&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake&nbsp;db</span><span style="color: #007700">:</span><span style="color: #0000BB">migrate&nbsp;RAILS_ENV</span><span style="color: #007700">=</span><span style="color: #0000BB">production&nbsp;</span><span style="color: #007700">--</span><span style="color: #0000BB">trace<br /></span><span style="color: #007700">(</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">testing</span><span style="color: #007700">/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">)<br />**&nbsp;</span><span style="color: #0000BB">Invoke&nbsp;db</span><span style="color: #007700">:</span><span style="color: #0000BB">migrate&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">first_time</span><span style="color: #007700">)<br />**&nbsp;</span><span style="color: #0000BB">Invoke&nbsp;environment&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">first_time</span><span style="color: #007700">)<br />**&nbsp;</span><span style="color: #0000BB">Execute&nbsp;environment<br />rake&nbsp;aborted</span><span style="color: #007700">!<br /></span><span style="color: #0000BB">undefined&nbsp;method&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">collect'&nbsp;for&nbsp;#&lt;Gem::Version::Requirement:0xb754cc7c&gt;<br />/usr/lib/ruby/1.8/rubygems/version.rb:237:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">initialize</span><span style="color: #DD0000">'<br />/usr/lib/ruby/1.8/rubygems/version.rb:29:in&nbsp;`new'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rubygems</span><span style="color: #007700">/</span><span style="color: #0000BB">version</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">29</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">initialize'<br />/home/testing/www/tracks/config/../vendor/rails/railties/lib/rails/gem_dependency.rb:55:in&nbsp;</span><span style="color: #007700">`new</span><span style="color: #DD0000">'<br />/home/testing/www/tracks/config/../vendor/rails/railties/lib/rails/gem_dependency.rb:55:in&nbsp;`initialize'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">testing</span><span style="color: #007700">/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">config</span><span style="color: #007700">/../</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">railties</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">initializer</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">732</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">new'<br />/home/testing/www/tracks/config/../vendor/rails/railties/lib/initializer.rb:732:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">gem</span><span style="color: #DD0000">'<br />/home/testing/www/tracks/config/environment.rb:24<br />/home/testing/www/tracks/config/../vendor/rails/railties/lib/initializer.rb:110:in&nbsp;`run'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">testing</span><span style="color: #007700">/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">config</span><span style="color: #007700">/</span><span style="color: #0000BB">environment</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">17<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">usr</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">rubygems</span><span style="color: #007700">/</span><span style="color: #0000BB">custom_require</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">27</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">gem_original_require'<br />/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in&nbsp;</span><span style="color: #007700">`require</span><span style="color: #DD0000">'<br />/home/testing/www/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:153:in&nbsp;`require'<br /></span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">testing</span><span style="color: #007700">/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks</span><span style="color: #007700">/</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">rails</span><span style="color: #007700">/</span><span style="color: #0000BB">activesupport</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">active_support</span><span style="color: #007700">/</span><span style="color: #0000BB">dependencies</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">521</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">new_constants_in'<br />/home/testing/www/tracks/vendor/rails/activesupport/lib/active_support/dependencies.rb:153:in&nbsp;</span><span style="color: #007700">`require</span><span style="color: #DD0000">'<br />/home/testing/www/tracks/vendor/rails/railties/lib/tasks/misc.rake:3<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:636:in&nbsp;`call'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">636</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">execute'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:631:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">each</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:631:in&nbsp;`execute'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">597</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke_with_call_chain'<br />/usr/lib/ruby/1.8/monitor.rb:242:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">synchronize</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:590:in&nbsp;`invoke_with_call_chain'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">607</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke_prerequisites'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:604:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">each</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:604:in&nbsp;`invoke_prerequisites'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">596</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke_with_call_chain'<br />/usr/lib/ruby/1.8/monitor.rb:242:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">synchronize</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:590:in&nbsp;`invoke_with_call_chain'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">583</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:2047:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">invoke_task</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:2025:in&nbsp;`top_level'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2025</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">each'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:2025:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">top_level</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:2064:in&nbsp;`standard_exception_handling'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">2019</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">top_level'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:1997:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">run</span><span style="color: #DD0000">'<br />/var/lib/gems/1.8/gems/rake-0.8.5/lib/rake.rb:2064:in&nbsp;`standard_exception_handling'<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">-</span><span style="color: #0000BB">0.8.5</span><span style="color: #007700">/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">.</span><span style="color: #0000BB">rb</span><span style="color: #007700">:</span><span style="color: #0000BB">1994</span><span style="color: #007700">:</span><span style="color: #0000BB">in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">run'<br />/var/lib/gems/1.8/gems/rake-0.8.5/bin/rake:31<br />/var/lib/gems/1.8/bin/rake:16:in&nbsp;</span><span style="color: #007700">`</span><span style="color: #0000BB">load<br /></span><span style="color: #007700">/var/</span><span style="color: #0000BB">lib</span><span style="color: #007700">/</span><span style="color: #0000BB">gems</span><span style="color: #007700">/</span><span style="color: #0000BB">1.8</span><span style="color: #007700">/</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">rake</span><span style="color: #007700">:</span><span style="color: #0000BB">16&nbsp;</span>
</span>
</code></div><p></p>

<p>Other information:<br />
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">ruby&nbsp;</span><span style="color: #007700">-</span><span style="color: #0000BB">v<br />ruby&nbsp;1.8.6&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">2007</span><span style="color: #007700">-</span><span style="color: #0000BB">09</span><span style="color: #007700">-</span><span style="color: #0000BB">24&nbsp;patchlevel&nbsp;111</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">&#91;i486</span><span style="color: #007700">-</span><span style="color: #0000BB">linux&#93;&nbsp;</span>
</span>
</code></div><p></p>

<p></p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">$&nbsp;</span><span style="color: #0000BB">gem&nbsp;</span><span style="color: #007700">-</span><span style="color: #0000BB">v<br />0.9.4&nbsp;</span>
</span>
</code></div><p></p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>Error 500 with Apache2</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/376/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.376</id>
      <published>2009-04-21T16:17:59Z</published>
      <updated></updated>
      <author><name>meilon</name></author>
      <content type="html">
      <![CDATA[
        <p>Hi!</p>

<p>I&#8217;m new to ruby on rails and I&#8217;m trying to get tracks running on my Debian lenny with Apache2.</p>

<p>After configuring Apache to use RoR, it seems to work, but I get an &#8220;Error 500 Internal Server Error&#8221; in my Browser (notice that this is not the Error 500 Message that Apache should show me with the default .htaccess file I&#8217;m using!).</p>

<p>Then I tried to start the dispatch.rb via command line and got the same message. Here&#8217;s the output used with the verbose option: <a href="http://pastebin.com/f6d136656">http://pastebin.com/f6d136656</a></p>

<p>Do you have any idea what could have went wrong?</p>

<p>-meilon</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>no stats</title>
      <link rel="alternate" type="text/html" href="http://www.getontracks.org/forums/viewthread/373/" />      
      <id>tag:getontracks.org,2009:forums/viewthread/.373</id>
      <published>2009-04-14T06:51:27Z</published>
      <updated>2009-04-14T06:52:00Z</updated>
      <author><name>dtufano</name></author>
      <content type="html">
      <![CDATA[
        <p>So I&#8217;ve now installed Tracks locally and remotely.&nbsp; My local install runs without a hitch, but on the remote (hosted) install stats won&#8217;t work.</p>

<p>Both installs are utilizing mod rails. The hosted install is running on a dreamhost server.&nbsp; Everything else works in Tracks except stats, which gives a 404 error. </p>

<p><br />
Remote (hosted) Environment<br />
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">Ruby&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.7&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">x86_64</span><span style="color: #007700">-</span><span style="color: #0000BB">linux</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">RubyGems&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.3.1<br />Rails&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Record&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Action&nbsp;Pack&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Resource&nbsp;version&nbsp;&nbsp;&nbsp;2.2.2<br />Action&nbsp;Mailer&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Support&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Edge&nbsp;Rails&nbsp;revision&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;unknown<br />Application&nbsp;root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">/</span><span style="color: #0000BB">home</span><span style="color: #007700">/</span><span style="color: #0000BB">dtufano</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks<br />Environment&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;development<br />Database&nbsp;adapter&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mysql&nbsp;</span>
</span>
</code></div><p></p>

<p>Local Environment<br />
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #0000BB">Ruby&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.6&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">i486</span><span style="color: #007700">-</span><span style="color: #0000BB">linux</span><span style="color: #007700">)<br /></span><span style="color: #0000BB">RubyGems&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.3.1<br />Rails&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Record&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Action&nbsp;Pack&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Resource&nbsp;version&nbsp;&nbsp;&nbsp;2.2.2<br />Action&nbsp;Mailer&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Active&nbsp;Support&nbsp;version&nbsp;&nbsp;&nbsp;&nbsp;2.2.2<br />Edge&nbsp;Rails&nbsp;revision&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;unknown<br />Application&nbsp;root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">/var/</span><span style="color: #0000BB">www</span><span style="color: #007700">/</span><span style="color: #0000BB">ruby</span><span style="color: #007700">/</span><span style="color: #0000BB">tracks<br />Environment&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;development<br />Database&nbsp;adapter&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mysql<br />Database&nbsp;schema&nbsp;version&nbsp;&nbsp;&nbsp;46&nbsp;</span>
</span>
</code></div><p></p>
      ]]>
      </content>
    </entry>


</feed>