RoundCube Webmail
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.

56 lines
2.3 KiB

20 years ago
20 years ago
  1. UPGRADING instructions
  2. ======================
  3. Follow these instructions if upgrading from a previous version
  4. of Roundcube Webmail. We recommend to carefully backup the existing
  5. installation as well as the database before going through the following steps.
  6. Using the update script
  7. -----------------------
  8. There is a shell script (for unix based systems) that does the job for you.
  9. To use it, unpack the archive of the new Roundcube version to a temporary location
  10. (don't replace the Roundcube installation you want to update)
  11. and cd into that directory. From there, run the following command in a shell:
  12. ./bin/installto.sh <TARGET-FOLDER>
  13. For <TARGET-FOLDER> you specify the path to the Roundcube installation
  14. which should be updated. The update script will then copy all new files to the
  15. target location and check and update the configuration and database schema.
  16. After all is done, the temporary folder with the new Roundcube files can be
  17. removed again.
  18. WARNING: See Post-Upgrade Activities section below.
  19. Updating manually
  20. -----------------
  21. If you don't have shell access to the Roundcube installation or if not running
  22. it on a unix system, you need to do the following operations by hand:
  23. 1. Replace index.php and all files in
  24. - ./bin/
  25. - ./SQL/
  26. - ./program/
  27. 2. rsync the contents of the following folders from your installation
  28. directory into the target folder:
  29. ./skins/
  30. ./plugins/
  31. 3. Run ./bin/update.sh from the commandline OR
  32. open http://url-to-roundcube/installer/ in a browser and choose "3 Test config".
  33. To enable the latter one, you have to temporary set 'enable_installer'
  34. to true in your local config/main.inc.php file.
  35. 4. Let the update script/installer check your configuration and
  36. update your config files and database schema as suggested by the updater.
  37. 5. Make sure 'enable_installer' is set to false again.
  38. 6. See Post-Upgrade Activities section.
  39. Post-Upgrade Activities
  40. -----------------------
  41. 1. Check .htaccess settings (some php settings could become required)
  42. 2. If you're using build-in addressbook, run indexing script /bin/indexcontacts.sh.
  43. 3. When upgrading from version older than 0.6-beta you should make sure
  44. your folder settings contain namespace prefix. For example Courier users
  45. should add INBOX. prefix to folder names in main configuration file.
  46. 4. Check system requirements in INSTALL file.