ChiliProject is not maintained anymore.
Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and
we urge all existing users to migrate their data to a maintained
system, e.g. Redmine. We will
provide a migration script later. In the meantime, you can use the
instructions by
Christian Daehn.
Forums » Discuss »
chiliproject installation problem.
Added by chili peper at 2012-02-15 07:41 pm
Hello,
i'm trying to install chiliproject and im at this step:
RAILS_ENV=production bundle exec rake db:migrate
once i run this, it give me following error:
- RAILS_ENV=production bundle exec rake db:migrate
!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.
rake aborted!
no such file to load -- mysql
Tasks: TOP => db:migrate => environment
(See full trace by running task with --trace)
i've already tried "gem install mysql" and "gem install mysql --with-mysql-config=/usr/bin/mysql_config"
but it doesn't help, what is wrong ?
What tutorial did you use?
ChiliProject works with bundler, that's step 2 in Installation (you will probably want --without test development mysql postgres sqlite
as an option to that, it will only install the mysql2
database adapter and not the other available ones).
i've solved the problem by changing adapter from mysql to mysql2 in config/database.yml as the guy from #chiliproject irc chan suggested.
thanks.