UPGRADING
28 lines
| 786 B
| text/plain
|
TextLexer
/ doc / UPGRADING
|
r870 | == Redmine upgrade procedure | ||
Redmine - project management software | ||||
|
r1269 | Copyright (C) 2006-2008 Jean-Philippe Lang | ||
|
r870 | http://www.redmine.org/ | ||
|
r1269 | == Upgrading | ||
|
r870 | |||
1. Uncompress the program archive in a new directory | ||||
3. Copy your database settings (RAILS_ROOT/config/database.yml) | ||||
|
r1611 | and SMTP settings (RAILS_ROOT/config/email.yml) | ||
|
r870 | into the new config directory | ||
|
r1611 | 4. Migrate your database (please make a backup before doing this): | ||
|
r870 | rake db:migrate RAILS_ENV="production" | ||
|
r1611 | 5. Copy the RAILS_ROOT/files directory content into your new installation | ||
|
r1269 | This directory contains all the attached files | ||
|
r870 | |||
|
r1269 | == Notes | ||
|
r870 | |||
|
r2103 | 1. Rails 2.1.2 is required for version 0.8. | ||
|
r870 | |||
|
r1269 | 2. When upgrading your code with svn update, don't forget to clear | ||
the application cache (RAILS_ROOT/tmp/cache) before restarting. | ||||