You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UPGRADING 1.1KB

123456789101112131415161718192021222324252627282930313233343536
  1. == Redmine upgrade procedure
  2. Redmine - project management software
  3. Copyright (C) 2006-2007 Jean-Philippe Lang
  4. http://www.redmine.org/
  5. == Upgrading from 0.3.0 and above
  6. 1. Uncompress the program archive in a new directory
  7. 3. Copy your database settings (RAILS_ROOT/config/database.yml)
  8. into the new config directory
  9. 4. Enter your SMTP settings in config/environment.rb
  10. Do not replace this file with the old one
  11. 5. Migrate your database (please make a backup before doing this):
  12. rake db:migrate RAILS_ENV="production"
  13. 6. Copy the RAILS_ROOT/files directory content into your new installation
  14. Note 1: Rails 1.2.2 or higher is required for version 0.4.2 and later.
  15. This release won't work with Rails 2.0
  16. Note 2: when upgrading your code with svn update, don't forget to clear
  17. the application cache (RAILS_ROOT/tmp/cache) before restarting.
  18. Note 3: settings previously defined in custom_config.rb are now stored
  19. in database, as of version 0.4.2. Go to "Admin -> Settings" to edit them.
  20. == From 0.2.x and below
  21. Due to major database changes since 0.2.x, there is no migration support
  22. from 0.2.x and previous versions.