Changes between Version 10 and Version 11 of ToolUpgrade


Ignore:
Timestamp:
Nov 23, 2007, 8:15:04 PM (16 years ago)
Author:
Nicolas
Comment:

m

Legend:

Unmodified
Added
Removed
Modified
  • ToolUpgrade

    v10 v11  
    1010 1. Run the upgrade script:
    1111{{{
    12 cd source/tools
    13 upgrade project_name
     12$ cd source/tools
     13$ ./upgrade project_name
    1414}}}
    1515  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).
     
    1919 4. Update your project's database if needed:
    2020{{{
    21 cd project/html/ops
     21$ cd project/html/ops
    2222}}}
    2323 and look at the file `db_update.php`. This has a number of functions with names like
    2424{{{
     25#!php
    2526update_8_05_2005()
    2627}}}
     
    3233 To do a particular update, edit `db_update.php` so that (at the bottom) it calls that function. Then do
    3334{{{
    34 php db_update.php
     35$ php db_update.php
    3536}}}
    3637 Repeat this for the necessary updates, in increasing chronological order.