Project

General

Profile

RedmineUpgrade » History » Version 6

Thomas Lecavelier, 2008-10-10 16:47
Fix bad chars migration

1 1 Jean-Philippe Lang
h1. Upgrading
2
3 2 Jean-Philippe Lang
h2. Upgrading from a SVN checkout
4
5
1. Go to the Redmine root directory and run the following command:
6
7
  svn update
8
9
2. Migrate your database (please, make a database backup before doing this):
10
11
  rake db:migrate RAILS_ENV="production"
12
13
3. Clear the cache and existing sessions:
14
15
<pre>
16
rake tmp:cache:clear
17
rake tmp:sessions:clear
18
</pre>
19
20 6 Thomas Lecavelier
4. Restart the application and go to _"Admin -> Roles & permissions"_ to check/set permissions for the new features, if any.
21 2 Jean-Philippe Lang
22
h2. Upgrading from a downloaded release
23
24
1. Uncompress the new program archive in a new directory.
25 1 Jean-Philippe Lang
   
26 3 Jean-Philippe Lang
2. Copy your database settings @config/database.yml@ into the new @config@ directory.
27
28
3. Re-enter your SMTP settings in @config/environment.rb@ but do *not* replace this file with the old one.
29
30 5 Thomas Lecavelier
4. Go the your uncompressed new redmine directory, then migrate your database (please, make a database backup before doing this):
31 1 Jean-Philippe Lang
32
  rake db:migrate RAILS_ENV="production"
33
34 2 Jean-Philippe Lang
5. Copy the @RAILS_ROOT/files@ directory content into your new installation.
35 1 Jean-Philippe Lang
36 6 Thomas Lecavelier
6. Start the application and go to _"Admin -> Roles & permissions"_ to check/set permissions for the new features, if any.