[ PHPXref.com ] [ Generated: Sun Jul 20 19:13:40 2008 ] [ osCommRes 1.2.0 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/includes/ -> configure.php (source)

   1  <?php
   2  /*

   3    osCommerce, Open Source E-Commerce Solutions

   4    http://www.oscommerce.com

   5  

   6    Copyright (c) 2003 osCommerce

   7  

   8    Released under the GNU General Public License

   9  */
  10  
  11  // Define the webserver and path parameters

  12  // * DIR_FS_* = Filesystem directories (local/physical)

  13  // * DIR_WS_* = Webserver directories (virtual/URL)

  14    define('HTTP_SERVER', ''); // eg, http://localhost - should not be empty for productive servers

  15    define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers

  16    define('ENABLE_SSL', ''); // secure webserver for checkout procedure?

  17    define('HTTP_COOKIE_DOMAIN', '');
  18    define('HTTPS_COOKIE_DOMAIN', '');
  19    define('HTTP_COOKIE_PATH', '');
  20    define('HTTPS_COOKIE_PATH', '');
  21    define('DIR_WS_HTTP_CATALOG', '');
  22    define('DIR_WS_HTTPS_CATALOG', '');
  23    define('DIR_WS_IMAGES', 'images/');
  24    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
  25    define('DIR_WS_INCLUDES', 'includes/');
  26    define('DIR_WS_BOXES', DIR_WS_INCLUDES . '/boxes/');
  27    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
  28    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
  29    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
  30    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
  31  
  32    define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
  33    define('DIR_FS_CATALOG', '');
  34    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
  35    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  36    
  37    //Added for BTS1.0

  38    define('DIR_WS_TEMPLATES', 'templates/');
  39    define('DIR_WS_CONTENT', DIR_WS_TEMPLATES . 'content/');
  40    define('DIR_WS_JAVASCRIPT', DIR_WS_INCLUDES . 'javascript/');
  41  //End BTS1.0

  42  
  43  // define our database connection

  44    define('DB_SERVER', ''); // eg, localhost - should not be empty for productive servers

  45    define('DB_SERVER_USERNAME', '');
  46    define('DB_SERVER_PASSWORD', '');
  47    define('DB_DATABASE', '');
  48    define('USE_PCONNECT', ''); // use persistent connections?

  49    define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

  50  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]