Ruby on Rails application could not be started
Added by V G about 11 years ago
Per a customers request I installed redmine 1.3.3 on Ubuntu 12.04.3 LTS. I have followed the install instructions to the letter. However when I go to launch the website Http://myserver/redmine, I get an error stating "the Ruby on Rails application could not be started". Can some one please give som insight on what I may be missing?
Gems installed...
Ruby 1.8.7
Rails 2.3.14
Rack 1.1.0
RubyGems 1.8
Replies (2)
RE: Ruby on Rails application could not be started
-
Added by James H about 11 years ago
think u need more pre-req gems for ruby. unsure of requirements for redmine 1.3.3 though.
have you "bundle install"
RE: Ruby on Rails application could not be started
-
Added by V G about 11 years ago
Hi James,
You were right! The website was throwing an error "could not find rack (~> 1.1.0) amongst []". This is what worked for me...
gem uninstall rack
gem install rack -v 1.1.0
Thanks again