Rails Fun
September 12th 2007 10:32 pm
Holy man! I just spent most of the day screwing around with Redmine, and couldn’t get it to work properly. Long story short, the routes weren’t working properly. Found this solution from talideon.com
Thank you so much!!!
In short, go into config/boot.rb and change this:
root_path = Pathname.new(root_path).cleanpath(true).to_s
to this:
root_path = Pathname.new(root_path).cleanpath(true).realpath().to_s
Getting spurious “no route found to match” with Rails 1.2.3? – talideon.com

