2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * File for vendor customisation, you can change here paths or some behaviour,
5 * which vendors such as Linux distibutions might want to change.
7 * For changing this file you should know what you are doing. For this reason
8 * options here are not part of normal configuration.
15 * Path to changelog file, can be gzip compressed. Useful when you want to
16 * have documentation somewhere else, eg. /usr/share/doc.
18 define('CHANGELOG_FILE', './ChangeLog');
21 * Path to license file. Useful when you want to have documentation somewhere
22 * else, eg. /usr/share/doc.
24 define('LICENSE_FILE', './LICENSE');
27 * Path to config file generated using setup script.
29 define('SETUP_CONFIG_FILE', './config/config.inc.php');
32 * Whether setup requires writable directory where config
33 * file will be generated.
35 define('SETUP_DIR_WRITABLE', true);
38 * Whether to skip mtime check on config file and load it on every request.
39 * This has slight performance drawback, but it is the only way to handle
40 * inclusions of other php scripts from config.
42 define('SKIP_MTIME_CONFIG_CHECK', false);