home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 88 / PIWD88.iso / pc / CONTENTS / ECOMMERCE / SOFTWARE / OSCOMMERCE.EXE / oscommerce-2.2ms2 / extras / win32 / configure.php next >
PHP Script  |  2001-12-03  |  651b  |  24 lines

  1. <?php
  2. /*
  3.   $Id: configure.php,v 1.2 2001/12/03 15:31:05 dgw_ Exp $
  4.  
  5.   The Exchange Project - Community Made Shopping!
  6.   http://www.theexchangeproject.org
  7.  
  8.   Copyright (c) 2000,2001 The Exchange Project
  9.  
  10.   Released under the GNU General Public License
  11. */
  12.  
  13.   define('HTTP_SERVER', 'http://localhost');
  14.   define('HTTPS_SERVER', 'https://localhost');
  15.   define('ENABLE_SSL', 0); // ssl server enable(1)/disable(0)
  16.  
  17.   define('DIR_FS_DOCUMENT_ROOT', 'C:/Program Files/Apache Group/Apache/htdocs/');
  18.  
  19.   define('DB_SERVER', 'localhost');
  20.   define('DB_SERVER_USERNAME', 'root');
  21.   define('DB_SERVER_PASSWORD', '');
  22.  
  23.   define('CONFIGURE_STATUS_COMPLETED', 1);
  24. ?>