bug#3212720 Show error message on error.
[phpmyadmin/ayax.git] / libraries / vendor_config.php
blob41f7c233fc953a4369c11ee6cc893b1a73b5d25d
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
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.
10 * @package phpMyAdmin
13 /**
14 * Path to changelog file, can be gzip compressed. Useful when you want to
15 * have documentation somewhere else, eg. /usr/share/doc.
17 define('CHANGELOG_FILE', './ChangeLog');
19 /**
20 * Path to license file. Useful when you want to have documentation somewhere
21 * else, eg. /usr/share/doc.
23 define('LICENSE_FILE', './LICENSE');
25 /**
26 * Path to config file generated using setup script.
28 define('SETUP_CONFIG_FILE', './config/config.inc.php');
30 /**
31 * Whether setup requires writable directory where config
32 * file will be generated.
34 define('SETUP_DIR_WRITABLE', true);
36 /**
37 * Directory where configuration files are stored.
38 * It is not used directly in code, just a convenient
39 * define used further in this file.
41 define('CONFIG_DIR', './');
43 /**
44 * Filename of a configuration file.
46 define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
48 /**
49 * Filename of custom header file.
51 define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php');
53 /**
54 * Filename of custom footer file.
56 define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php');
58 /**
59 * Default value for check for version upgrades.
61 define('VERSION_CHECK_DEFAULT', true);