blob: 4e72581eb82d6c378ee0cd1d8c5cd80a3c57379e (
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
|
If this is a new installation:
1. Configure ${PN}:
a) Create config.inc.php. You can use the web-based installer
(this requires the 'setup' USE flag to be enabled):
mkdir ${MY_INSTALLDIR}/config
chown ${VHOST_SERVER_UID}:${VHOST_SERVER_UID} ${MY_INSTALLDIR}/config
then go to http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/setup/
once you've saved the configuration:
cp ${MY_INSTALLDIR}/config/config.inc.php ${MY_INSTALLDIR}/config.inc.php
rm -rf ${MY_INSTALLDIR}/config
b) Alternatively, use an existing configuration:
cp <path to existing config.inc.php file> ${MY_INSTALLDIR}/
c) Alternatively, use the sample config file:
cp ${MY_INSTALLDIR}/config.sample.inc.php ${MY_INSTALLDIR}/config.inc.php
2. Be sure that the libraries/ directory is not visible. You can use the
provided .htaccess file.
=================================================================
If you are upgrading from an earlier version:
1. If you are using ${PN}'s features for master/foreign tables, be sure to read
http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/Documentation.html#col_com
You will need to perform the ALTER TABLE step yourself.
|