Mercurial > hg > soundsoftware-site
comparison .svn/pristine/99/993669603cb0d8da03a8d1aab8b814b747a7d19c.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
1 == Redmine upgrade | |
2 | |
3 Redmine - project management software | |
4 Copyright (C) 2006-2011 Jean-Philippe Lang | |
5 http://www.redmine.org/ | |
6 | |
7 | |
8 == Upgrading | |
9 | |
10 1. Uncompress the program archive in a new directory | |
11 | |
12 2. Copy your database settings (RAILS_ROOT/config/database.yml) | |
13 and your configuration file (RAILS_ROOT/config/configuration.yml) | |
14 into the new config directory | |
15 Note: before Redmine 1.2, SMTP configuration was stored in | |
16 config/email.yml. It should now be stored in config/configuration.yml. | |
17 | |
18 3. Copy the RAILS_ROOT/files directory content into your new installation | |
19 This directory contains all the attached files. | |
20 | |
21 4. Copy the folders of the installed plugins and themes into new installation | |
22 | |
23 5. Generate a session store secret | |
24 | |
25 Redmine stores session data in cookies by default, which requires | |
26 a secret to be generated. Under the new application directory run: | |
27 rake generate_session_store | |
28 | |
29 DO NOT REPLACE OR EDIT ANY OTHER FILES. | |
30 | |
31 6. Migrate your database | |
32 | |
33 If you are upgrading to Rails 2.3.14 as part of this migration, you | |
34 need to upgrade the plugin migrations before running the plugin migrations | |
35 using: | |
36 rake db:migrate:upgrade_plugin_migrations RAILS_ENV="production" | |
37 | |
38 Please make a backup before doing this! Under the new application | |
39 directory run: | |
40 rake db:migrate RAILS_ENV="production" | |
41 | |
42 If you have installed any plugins, you should also run their database | |
43 migrations using: | |
44 rake db:migrate_plugins RAILS_ENV="production" | |
45 | |
46 7. Clean up | |
47 | |
48 Clear the cache and the existing sessions by running: | |
49 rake tmp:cache:clear | |
50 rake tmp:sessions:clear | |
51 | |
52 8. Restart the application server (e.g. mongrel, thin, passenger) | |
53 | |
54 9. Finally go to "Administration -> Roles & permissions" to check/set permissions | |
55 for new features, if any | |
56 | |
57 == Notes | |
58 | |
59 * Rails 2.3.14 is required for versions 1.3.x. | |
60 | |
61 == References | |
62 | |
63 * http://www.redmine.org/wiki/redmine/RedmineUpgrade |