##// END OF EJS Templates
Merged r3848 from trunk....
Merged r3848 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3851 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3737:0ae9cc7d07bd
r3737:0ae9cc7d07bd
Show More
UPGRADING
61 lines | 1.8 KiB | text/plain | TextLexer
Eric Davis
Merged r3848 from trunk....
r3737 == Redmine upgrade
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Redmine - project management software
Jean-Philippe Lang
Updated doc....
r3179 Copyright (C) 2006-2010 Jean-Philippe Lang
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 http://www.redmine.org/
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 == Upgrading
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
1. Uncompress the program archive in a new directory
Eric Davis
Merged r3848 from trunk....
r3737
Jean-Philippe Lang
Updated doc....
r3179 2. Copy your database settings (RAILS_ROOT/config/database.yml)
Eric Davis
Merged r3848 from trunk....
r3737 and SMTP settings (RAILS_ROOT/config/email.yml) into the new
config directory
3. Copy the RAILS_ROOT/files directory content into your new installation
This directory contains all the attached files.
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Eric Davis
Merged r3848 from trunk....
r3737 4. Copy the folders of the installed plugins and themes into new installation
5. Generate a session store secret
Jean-Philippe Lang
Updated doc....
r3179 Redmine stores session data in cookies by default, which requires
Eric Davis
Merged r3848 from trunk....
r3737 a secret to be generated. Under the new application directory run:
rake generate_session_store
DO NOT REPLACE OR EDIT ANY OTHER FILES.
Jean-Philippe Lang
Fixes INSTALL and UPGRADING steps order (#4848)....
r3341
Eric Davis
Merged r3848 from trunk....
r3737 6. Migrate your database
If you are upgrading to Rails 2.3.5 as part of this migration, you
need to upgrade the plugin migrations before running the plugin migrations
using:
rake db:migrate:upgrade_plugin_migrations RAILS_ENV="production"
Please make a backup before doing this! Under the new application
directory run:
rake db:migrate RAILS_ENV="production"
If you have installed any plugins, you should also run their database
migrations using:
rake db:migrate_plugins RAILS_ENV="production"
7. Clean up
Clear the cache and the existing sessions by running:
rake tmp:cache:clear
rake tmp:sessions:clear
8. Restart the application server (e.g. mongrel, thin, passenger)
9. Finally go to "Administration -> Roles & permissions" to check/set permissions
for new features, if any
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 == Notes
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Eric Davis
Merged r3848 from trunk....
r3737 * Rails 2.3.5 is required for versions 0.9.x and 1.0.x.
== References
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Eric Davis
Merged r3848 from trunk....
r3737 * http://www.redmine.org/wiki/redmine/RedmineUpgrade