blob: 73a85a2374ad1c0089060aa79d7249e287351ce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
install JSON
install Term::ReadKey
install DBIx::DBSchema 0.27 (or later)
(if you are running Pg version 7.2.x or earlier, install at least
DBIx::DBSchema 0.29)
install HTML::Widgets:SelectLayers 0.05 (or later)
install Business::CreditCard 0.28 (or later)
make install-perl-modules
run "freeside-upgrade username" to uprade your database schema
(if freeside-upgrade hangs, try stopping Apache, all Freeside processes, and
anything else connected to your database, especially on older Pg versions)
Optional:
CREATE INDEX cust_pkg2 ON cust_pkg ( pkgpart );
Optional for better VoIP performance:
CREATE INDEX rate_detail2 ON rate_detail ( ratenum, dest_regionnum );
-----
Installs w/integrated RT:
Install Module::Versions::Report
chmod a+r /opt/rt3/etc/RT*Config.pm
cd rt
su freeside
/opt/rt3/sbin/rt-setup-database --action schema --datadir etc/upgrade/3.3.0
/opt/rt3/sbin/rt-setup-database --action acl --datadir etc/upgrade/3.3.0
/opt/rt3/sbin/rt-setup-database --action insert --datadir etc/upgrade/3.3.0
/opt/rt3/sbin/rt-setup-database --action schema --datadir etc/upgrade/3.3.11
/opt/rt3/sbin/rt-setup-database --action acl --datadir etc/upgrade/3.3.11
/opt/rt3/sbin/rt-setup-database --action insert --datadir etc/upgrade/3.3.11
run "dbdef-create username"
make configure-rt
------
make install-docs
(or "make deploy" if you've got everything setup in the Makefile)
|