Ruby Version 1.8.4 Rails Version 2.3.5 I'm trying to install Redmine and when I get to the step of running: RAILS_ENV=production rake db:migrate I end up with an error that says: rake aborted! syntax error on line 8, col 10: ` encoding: utf8' My DB config reads: production: adapter: mysql database: r_redmine host: localhost username: r_redmine password: ********* encoding: utf8 Any idea what's wrong? Much Appreciated!
What version of MySQL? What OS is this running on? Is your database set for utf8 character set? Those are the only things I can think of to start debugging with.
Thanks for the help, the problem was my password contained a quote and it was breaking the code past that point. Silly mistake on my part.