On Sep 16, 2005, at 10:19 PM, Tim Martens wrote: > Scott, from within the script folder, I ran "ruby server -e > production"
Nope, that doesn't work. Rails starts looking for config files starting in the current directory; if you cd into script/, then everything breaks. Run 'ruby ./script/server -e production' and it should work. Scott