X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Fupgrade9.html;h=6a8fd965de4b7eeb98e0aa192753d6f1701367f8;hp=efd25887d420174da188dcad5f45f58712654835;hb=d20581bcbf2809d5c2969d773b16a0c8714a6dec;hpb=88357d0c76bd7c257d4d87da0a59f8814f925049 diff --git a/httemplate/docs/upgrade9.html b/httemplate/docs/upgrade9.html index efd25887d..6a8fd965d 100644 --- a/httemplate/docs/upgrade9.html +++ b/httemplate/docs/upgrade9.html @@ -10,5 +10,19 @@
  • Copy aspdocs/ or masondocs/ to your web server's document space.
  • Run make install-perl-modules.
  • Install Net::SSH minimum version 0.07 +
  • Apply the following changes to your database: +
    +INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 18, 'daytime', 'en_US', 'Day Phone' );
    +INSERT INTO msgcat ( msgnum, msgcode, locale, msg ) VALUES ( 19, 'night', 'en_US', 'Night Phone' );
    +
    +
  • Optionally, apply the following changes to your database (performance improvements): +
    +CREATE INDEX part_pkg1 ON part_pkg ( disabled );
    +CREATE INDEX part_svc1 ON part_svc ( disabled );
    +CREATE INDEX cust_bill2 ON cust_bill ( _date );
    +
    +
  • If you want to use ACH (electronic checks), you will need to make changes to your database. The easiest way to make these changes is to dump your database (with pg_dump), change the payinfo field in the cust_pay, cust_refund, h_cust_pay and h_cust_refund tables from varchar(16) to varchar(80), reload the database from the dump. +
  • If you will be doing bind exports you should make additional changes to your database. Follow the directions above to dump the database and change the reczone and recdata fields in the domain_record and h_domain_record tables from varchar(80) to varchar(255). +
  • If you made changes to your db schema from a dump as listed above run dbdef-create.
  • Restart Apache and freeside-queued.