Changes between Version 10 and Version 11 of ToolUpgrade
- Timestamp:
- Nov 23, 2007, 8:15:04 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ToolUpgrade
v10 v11 10 10 1. Run the upgrade script: 11 11 {{{ 12 cd source/tools13 upgrade project_name12 $ cd source/tools 13 $ ./upgrade project_name 14 14 }}} 15 15 The upgrade script copies files from the `source/html/`, `source/sched` and `source/tool` directories to the corresponding project directories (the default project root directory is `$HOME/projects/project_name`; upgrade takes an optional environment variables `INSTALL_DIR` specifying the project's root directory). … … 19 19 4. Update your project's database if needed: 20 20 {{{ 21 cd project/html/ops21 $ cd project/html/ops 22 22 }}} 23 23 and look at the file `db_update.php`. This has a number of functions with names like 24 24 {{{ 25 #!php 25 26 update_8_05_2005() 26 27 }}} … … 32 33 To do a particular update, edit `db_update.php` so that (at the bottom) it calls that function. Then do 33 34 {{{ 34 php db_update.php35 $ php db_update.php 35 36 }}} 36 37 Repeat this for the necessary updates, in increasing chronological order.