24 lines
651 B
PHP
24 lines
651 B
PHP
<?php
|
|
/*
|
|
$Id: configure.php,v 1.2 2001/12/03 15:31:05 dgw_ Exp $
|
|
|
|
The Exchange Project - Community Made Shopping!
|
|
http://www.theexchangeproject.org
|
|
|
|
Copyright (c) 2000,2001 The Exchange Project
|
|
|
|
Released under the GNU General Public License
|
|
*/
|
|
|
|
define('HTTP_SERVER', 'http://localhost');
|
|
define('HTTPS_SERVER', 'https://localhost');
|
|
define('ENABLE_SSL', 0); // ssl server enable(1)/disable(0)
|
|
|
|
define('DIR_FS_DOCUMENT_ROOT', 'C:/Program Files/Apache Group/Apache/htdocs/');
|
|
|
|
define('DB_SERVER', 'localhost');
|
|
define('DB_SERVER_USERNAME', 'root');
|
|
define('DB_SERVER_PASSWORD', '');
|
|
|
|
define('CONFIGURE_STATUS_COMPLETED', 1);
|
|
?>
|