-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
27 lines (24 loc) · 1.33 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://store.dragon.computer/');
// HTTPS
define('HTTPS_SERVER', 'http://store.dragon.computer/');
// DIR
define('DIR_APPLICATION', '/home/admin/web/store.dragon.computer/public_html/catalog/');
define('DIR_SYSTEM', '/home/admin/web/store.dragon.computer/public_html/system/');
define('DIR_LANGUAGE', '/home/admin/web/store.dragon.computer/public_html/catalog/language/');
define('DIR_TEMPLATE', '/home/admin/web/store.dragon.computer/public_html/catalog/view/theme/');
define('DIR_CONFIG', '/home/admin/web/store.dragon.computer/public_html/system/config/');
define('DIR_IMAGE', '/home/admin/web/store.dragon.computer/public_html/image/');
define('DIR_CACHE', '/home/admin/web/store.dragon.computer/public_html/system/cache/');
define('DIR_DOWNLOAD', '/home/admin/web/store.dragon.computer/public_html/system/download/');
define('DIR_UPLOAD', '/home/admin/web/store.dragon.computer/public_html/system/upload/');
define('DIR_MODIFICATION', '/home/admin/web/store.dragon.computer/public_html/system/modification/');
define('DIR_LOGS', '/home/admin/web/store.dragon.computer/public_html/system/logs/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'admin_store');
define('DB_PASSWORD', 'l5HtpzfBMS');
define('DB_DATABASE', 'admin_dragonstore');
define('DB_PREFIX', 'oc_');