-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
28 lines (25 loc) · 1.35 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
28
<?php
// HTTP
define('HTTP_SERVER', 'http://www.nativefoodstore.com/');
// HTTPS
define('HTTPS_SERVER', 'http://www.nativefoodstore.com/');
// DIR
define('DIR_APPLICATION', '/home/floretm2/public_html/nativefoodstore.com/catalog/');
define('DIR_SYSTEM', '/home/floretm2/public_html/nativefoodstore.com/system/');
define('DIR_LANGUAGE', '/home/floretm2/public_html/nativefoodstore.com/catalog/language/');
define('DIR_TEMPLATE', '/home/floretm2/public_html/nativefoodstore.com/catalog/view/theme/');
define('DIR_CONFIG', '/home/floretm2/public_html/nativefoodstore.com/system/config/');
define('DIR_IMAGE', '/home/floretm2/public_html/nativefoodstore.com/image/');
define('DIR_CACHE', '/home/floretm2/public_html/nativefoodstore.com/system/cache/');
define('DIR_DOWNLOAD', '/home/floretm2/public_html/nativefoodstore.com/system/download/');
define('DIR_organic', '/home/floretm2/public_html/nativefoodstore.com/system/organic/');
define('DIR_MODIFICATION', '/home/floretm2/public_html/nativefoodstore.com/system/modification/');
define('DIR_LOGS', '/home/floretm2/public_html/nativefoodstore.com/system/logs/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'floretm2_vishnu');
define('DB_PASSWORD', 'vishnu@nativefood');
define('DB_DATABASE', 'floretm2_vishnu_db');
define('DB_PREFIX', 'oc_');
define('MINIMUM_ORDER_VALUE', 149);