gecko-dev/webtools/addons/inc/config-dist.php
mike.morgan%oregonstate.edu 1a6a0dd16f Initial checkin of AMO v2.0 framework.
Notes:
    index.php - example document for main index, default.tpl wrapper
    faq.php - example document for faq page, nonav.tpl wrapper
2005-07-11 23:52:20 +00:00

28 lines
685 B
PHP

<?php
/**
* AMO global configuration document.
* @package amo
* @subpackage inc
*/
// Set runtime error options.
// See http://php.oregonstate.edu/manual/en/ref.errorfunc.php#errorfunc.constants
define('DISPLAY_ERRORS',E_ALL);
define('ERROR_REPORTING',1);
define('ROOT_PATH','/home/morgamic/public_html/v2');
define('WEB_PATH','/~morgamic/v2');
define('LIB',ROOT_PATH.'/lib');
define('TEMPLATE_DIR',ROOT_PATH.'/tpl');
define('COMPILE_DIR',LIB.'/smarty/templates_c');
define('CACHE_DIR',LIB.'/smarty/cache');
define('CONFIG_DIR',LIB.'/smarty/configs');
define('DB_USER','username');
define('DB_PASS','password');
define('DB_HOST','localhost');
define('DB_NAME','database');
?>