Difference between revisions of "Freeside:1.7:Documentation:Upgrading"
From Freeside
(removing spam) |
|||
(43 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | * Perl 5.8.0 or newer is required. Perl 5.8.3 or newer is required if using RT. | ||
* Install DBIx::DBSchema 0.31 (or later) | * Install DBIx::DBSchema 0.31 (or later) | ||
+ | * Install HTML::Widgets::SelectLayers 0.06 (or later) | ||
+ | * Install DBIx::SearchBuilder 1.34 (or later) | ||
* Install Color::Scheme | * Install Color::Scheme | ||
* Install Data::Table | * Install Data::Table | ||
* Install Lingua::EN::NameParse | * Install Lingua::EN::NameParse | ||
− | * Apply the following changes to your database: <pre> | + | * Install Lingua::EN::Inflect |
− | + | * Install DateTime | |
− | + | * Install DateTime::Format::Strptime | |
+ | * Install Number::Format 1.50 (or later) | ||
+ | * Apply the following changes to your database: | ||
+ | <pre> | ||
ALTER TABLE cust_pay_batch ADD COLUMN payinfo varchar(512); | ALTER TABLE cust_pay_batch ADD COLUMN payinfo varchar(512); | ||
UPDATE cust_pay_batch SET payinfo = cardnum; | UPDATE cust_pay_batch SET payinfo = cardnum; | ||
ALTER TABLE cust_pay_batch DROP COLUMN cardnum; | ALTER TABLE cust_pay_batch DROP COLUMN cardnum; | ||
ALTER TABLE cust_pay_batch ALTER COLUMN exp DROP NOT NULL; | ALTER TABLE cust_pay_batch ALTER COLUMN exp DROP NOT NULL; | ||
+ | |||
ALTER TABLE h_cust_pay_batch ADD COLUMN payinfo varchar(512); | ALTER TABLE h_cust_pay_batch ADD COLUMN payinfo varchar(512); | ||
UPDATE h_cust_pay_batch SET payinfo = cardnum; | UPDATE h_cust_pay_batch SET payinfo = cardnum; | ||
ALTER TABLE h_cust_pay_batch DROP COLUMN cardnum; | ALTER TABLE h_cust_pay_batch DROP COLUMN cardnum; | ||
ALTER TABLE h_cust_pay_batch ALTER COLUMN exp DROP NOT NULL; | ALTER TABLE h_cust_pay_batch ALTER COLUMN exp DROP NOT NULL; | ||
− | </ | + | </pre> |
+ | * Apply the following changes to your database (if you have a paymask column): | ||
+ | <pre> | ||
+ | UPDATE cust_main SET paymask = NULL WHERE paymask LIKE 'x%'; | ||
+ | </pre> | ||
* <code>make install-perl-modules</code> | * <code>make install-perl-modules</code> | ||
* As the freeside UNIX user, run <code>freeside-upgrade username</code>, passing the username of an internal Freeside user. | * As the freeside UNIX user, run <code>freeside-upgrade username</code>, passing the username of an internal Freeside user. | ||
* If freeside-upgrade hangs, try stopping Apache, all Freeside processes, and anything else connected to your database, especially on older PostgreSQL versions. | * If freeside-upgrade hangs, try stopping Apache, all Freeside processes, and anything else connected to your database, especially on older PostgreSQL versions. | ||
− | * <code>pg_attribute: permission denied executing: UPDATE pg_attribute</code> when running freeside-upgrade with Pg 7.3 or older? Try this:<pre | + | * <code>pg_attribute: permission denied executing: UPDATE pg_attribute</code> when running freeside-upgrade with Pg 7.3 or older? Try this: |
+ | <pre> | ||
ALTER TABLE cust_pay_batch ADD COLUMN payby char(4); | ALTER TABLE cust_pay_batch ADD COLUMN payby char(4); | ||
ALTER TABLE h_cust_pay_batch ADD COLUMN payby char(4); | ALTER TABLE h_cust_pay_batch ADD COLUMN payby char(4); | ||
ALTER TABLE cust_pay_batch ALTER COLUMN payby SET NOT NULL; | ALTER TABLE cust_pay_batch ALTER COLUMN payby SET NOT NULL; | ||
ALTER TABLE h_cust_pay_batch ALTER COLUMN payby SET NOT NULL; | ALTER TABLE h_cust_pay_batch ALTER COLUMN payby SET NOT NULL; | ||
− | + | </pre> | |
* ACL bootstrapping: | * ACL bootstrapping: | ||
− | + | <pre> | |
su | su | ||
cd /usr/local/etc/freeside | cd /usr/local/etc/freeside | ||
chown freeside mapsecrets htpasswd | chown freeside mapsecrets htpasswd | ||
− | + | </pre> | |
** As the freeside UNIX user, run <code>bin/mapsecrets2access_user username</code>, passing the username of an internal Freeside user. | ** As the freeside UNIX user, run <code>bin/mapsecrets2access_user username</code>, passing the username of an internal Freeside user. | ||
** Using the web interface you can add more restrictive groups and move your employees into them. | ** Using the web interface you can add more restrictive groups and move your employees into them. | ||
* If you have any records in the cust_tax_exempt table, you *MUST* migrate them to the new cust_tax_exempt_pkg table. An example script to get you started is in <code>bin/fs-migrate-cust_tax_exempt</code> - it may need to be customized for your specific data. | * If you have any records in the cust_tax_exempt table, you *MUST* migrate them to the new cust_tax_exempt_pkg table. An example script to get you started is in <code>bin/fs-migrate-cust_tax_exempt</code> - it may need to be customized for your specific data. | ||
− | + | * Optional to eliminate harmless but noisy warnings: | |
− | + | <pre> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | * Optional to eliminate harmless but noisy warnings: <pre | ||
UPDATE cust_main_county SET exempt_amount = 0 WHERE exempt_amount IS NULL; | UPDATE cust_main_county SET exempt_amount = 0 WHERE exempt_amount IS NULL; | ||
− | + | </pre> | |
* <code>make install-docs</code> (or <code>make deploy</code> if you've got everything setup for that in the Makefile) | * <code>make install-docs</code> (or <code>make deploy</code> if you've got everything setup for that in the Makefile) | ||
* Perl module errors? Try <code>make clean</code> then <code>make install-perl-modules</code> then <code>make install-docs</code> or <code>make deploy</code> again | * Perl module errors? Try <code>make clean</code> then <code>make install-perl-modules</code> then <code>make install-docs</code> or <code>make deploy</code> again |
Latest revision as of 10:51, 12 January 2009
- Perl 5.8.0 or newer is required. Perl 5.8.3 or newer is required if using RT.
- Install DBIx::DBSchema 0.31 (or later)
- Install HTML::Widgets::SelectLayers 0.06 (or later)
- Install DBIx::SearchBuilder 1.34 (or later)
- Install Color::Scheme
- Install Data::Table
- Install Lingua::EN::NameParse
- Install Lingua::EN::Inflect
- Install DateTime
- Install DateTime::Format::Strptime
- Install Number::Format 1.50 (or later)
- Apply the following changes to your database:
ALTER TABLE cust_pay_batch ADD COLUMN payinfo varchar(512); UPDATE cust_pay_batch SET payinfo = cardnum; ALTER TABLE cust_pay_batch DROP COLUMN cardnum; ALTER TABLE cust_pay_batch ALTER COLUMN exp DROP NOT NULL; ALTER TABLE h_cust_pay_batch ADD COLUMN payinfo varchar(512); UPDATE h_cust_pay_batch SET payinfo = cardnum; ALTER TABLE h_cust_pay_batch DROP COLUMN cardnum; ALTER TABLE h_cust_pay_batch ALTER COLUMN exp DROP NOT NULL;
- Apply the following changes to your database (if you have a paymask column):
UPDATE cust_main SET paymask = NULL WHERE paymask LIKE 'x%';
-
make install-perl-modules
- As the freeside UNIX user, run
freeside-upgrade username
, passing the username of an internal Freeside user. - If freeside-upgrade hangs, try stopping Apache, all Freeside processes, and anything else connected to your database, especially on older PostgreSQL versions.
-
pg_attribute: permission denied executing: UPDATE pg_attribute
when running freeside-upgrade with Pg 7.3 or older? Try this:
ALTER TABLE cust_pay_batch ADD COLUMN payby char(4); ALTER TABLE h_cust_pay_batch ADD COLUMN payby char(4); ALTER TABLE cust_pay_batch ALTER COLUMN payby SET NOT NULL; ALTER TABLE h_cust_pay_batch ALTER COLUMN payby SET NOT NULL;
- ACL bootstrapping:
su cd /usr/local/etc/freeside chown freeside mapsecrets htpasswd
- As the freeside UNIX user, run
bin/mapsecrets2access_user username
, passing the username of an internal Freeside user. - Using the web interface you can add more restrictive groups and move your employees into them.
- As the freeside UNIX user, run
- If you have any records in the cust_tax_exempt table, you *MUST* migrate them to the new cust_tax_exempt_pkg table. An example script to get you started is in
bin/fs-migrate-cust_tax_exempt
- it may need to be customized for your specific data. - Optional to eliminate harmless but noisy warnings:
UPDATE cust_main_county SET exempt_amount = 0 WHERE exempt_amount IS NULL;
-
make install-docs
(ormake deploy
if you've got everything setup for that in the Makefile) - Perl module errors? Try
make clean
thenmake install-perl-modules
thenmake install-docs
ormake deploy
again