| [ Index ] |
|
Code source de osCommerce 2.2ms2-060817 |
1 <?php 2 /* 3 $Id: configure.php,v 1.14 2003/02/21 16:55:24 dgw_ Exp $ 4 5 osCommerce, Open Source E-Commerce Solutions 6 http://www.oscommerce.com 7 8 Copyright (c) 2002 osCommerce 9 10 Released under the GNU General Public License 11 */ 12 13 // define our webserver variables 14 // FS = Filesystem (physical) 15 // WS = Webserver (virtual) 16 define('HTTP_SERVER', ''); // eg, http://localhost or - https://localhost should not be NULL for productive servers 17 define('HTTP_CATALOG_SERVER', ''); 18 define('HTTPS_CATALOG_SERVER', ''); 19 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module 20 define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) 21 define('DIR_WS_ADMIN', '/admin/'); 22 define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); 23 define('DIR_WS_CATALOG', '/catalog/'); 24 define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); 25 define('DIR_WS_IMAGES', 'images/'); 26 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); 27 define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); 28 define('DIR_WS_INCLUDES', 'includes/'); 29 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); 30 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); 31 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); 32 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); 33 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); 34 define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); 35 define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); 36 define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); 37 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); 38 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); 39 40 // define our database connection 41 define('DB_SERVER', ''); 42 define('DB_SERVER_USERNAME', 'mysql'); 43 define('DB_SERVER_PASSWORD', ''); 44 define('DB_DATABASE', 'osCommerce'); 45 define('USE_PCONNECT', 'false'); 46 define('STORE_SESSIONS', ''); 47 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Mon Nov 26 19:48:25 2007 | par Balluche grâce à PHPXref 0.7 |
|