-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
executable file
·27 lines (24 loc) · 1.11 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
// HTTP
define('HTTP_SERVER', 'http://www.ecm2.com/');
// HTTPS
define('HTTPS_SERVER', 'http://www.ecm2.com/');
// DIR
define('DIR_APPLICATION', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/catalog/');
define('DIR_SYSTEM', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/system/');
define('DIR_DATABASE', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/system/database/');
define('DIR_LANGUAGE', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/catalog/language/');
define('DIR_TEMPLATE', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/catalog/view/theme/');
define('DIR_CONFIG', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/system/config/');
define('DIR_IMAGE', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/image/');
define('DIR_CACHE', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/system/cache/');
define('DIR_DOWNLOAD', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/download/');
define('DIR_LOGS', '/Applications/XAMPP/xamppfiles/htdocs/ECM2/system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'ECM2');
define('DB_PREFIX', 'oc_');
?>