Mozilla/mozilla/webtools/survey/inc/config-dist.php
mike.morgan%oregonstate.edu a0ff25b11d Checked in config-dist.php, it was left blank for some reason.
git-svn-id: svn://10.0.0.236/trunk@192149 18797224-902f-48f8-a5cc-f745e15eee43
2006-03-10 16:16:04 +00:00

31 lines
760 B
PHP

<?php
/**
* Survey config.
*
* @package survey
* @subpackage inc
*/
// Set runtime error options.
// See http://php.oregonstate.edu/manual/en/ref.errorfunc.php#errorfunc.constants
define('DISPLAY_ERRORS',1);
define('ERROR_REPORTING',2047);
// Root path of the application directory.
define('ROOT_PATH','');
// Header and footer includes that are required for htdocs.
define('HEADER',ROOT_PATH.'/inc/header.php');
define('FOOTER',ROOT_PATH.'/inc/footer.php');
// This is the relative web path from the hostname.
// For example if we had http://foo.com/bar, WEB_PATH would be '/bar'.
define('WEB_PATH','');
// Database configuration.
define('DB_USER','');
define('DB_PASS','');
define('DB_HOST','');
define('DB_NAME','');
define('DB_PORT', '3306');
?>