Commit d46609f4 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes INSTALL and UPGRADING steps order (#4848).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3455 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent c6b2f1d6
...@@ -30,15 +30,15 @@ Optional: ...@@ -30,15 +30,15 @@ Optional:
3. Configure database parameters in config/database.yml 3. Configure database parameters in config/database.yml
for "production" environment (default database is MySQL) for "production" environment (default database is MySQL)
4. Create the database structure. Under the application main directory: 4. Generate a session store secret
rake db:migrate RAILS_ENV="production"
It will create tables and an administrator account.
5. Generate a session store secret
Redmine stores session data in cookies by default, which requires Redmine stores session data in cookies by default, which requires
a secret to be generated. Run: a secret to be generated. Run:
rake config/initializers/session_store.rb rake config/initializers/session_store.rb
5. Create the database structure. Under the application main directory:
rake db:migrate RAILS_ENV="production"
It will create tables and an administrator account.
6. Setting up permissions 6. Setting up permissions
The user who runs Redmine must have write permission on the following The user who runs Redmine must have write permission on the following
subdirectories: files, log, tmp (create the last one if not present). subdirectories: files, log, tmp (create the last one if not present).
......
...@@ -13,17 +13,17 @@ http://www.redmine.org/ ...@@ -13,17 +13,17 @@ http://www.redmine.org/
and SMTP settings (RAILS_ROOT/config/email.yml) and SMTP settings (RAILS_ROOT/config/email.yml)
into the new config directory into the new config directory
DO NOT REPLACE ANY OTHERS FILES. DO NOT REPLACE ANY OTHERS FILES.
3. Migrate your database (please make a backup before doing this):
rake db:migrate RAILS_ENV="production"
4. Copy the RAILS_ROOT/files directory content into your new installation
This directory contains all the attached files
5. Generate a session store secret 3. Generate a session store secret
Redmine stores session data in cookies by default, which requires Redmine stores session data in cookies by default, which requires
a secret to be generated. Run: a secret to be generated. Run:
rake config/initializers/session_store.rb rake config/initializers/session_store.rb
4. Migrate your database (please make a backup before doing this):
rake db:migrate RAILS_ENV="production"
5. Copy the RAILS_ROOT/files directory content into your new installation
This directory contains all the attached files
== Notes == Notes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment