-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
30 lines (27 loc) · 1.14 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
29
30
<?php
// HTTP
define('HTTP_SERVER', 'http://localhost/hn/');
define('HTTP_IMAGE', 'http://localhost/hn/image/');
define('HTTP_ADMIN', 'http://localhost/hn/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://localhost/hn/');
define('HTTPS_IMAGE', 'http://localhost/hn/image/');
// DIR
define('DIR_APPLICATION', 'C:\ApacheWebs\opencart\wwwhn/catalog/');
define('DIR_SYSTEM', 'C:\ApacheWebs\opencart\wwwhn/system/');
define('DIR_DATABASE', 'C:\ApacheWebs\opencart\wwwhn/system/database/');
define('DIR_LANGUAGE', 'C:\ApacheWebs\opencart\wwwhn/catalog/language/');
define('DIR_TEMPLATE', 'C:\ApacheWebs\opencart\wwwhn/catalog/view/theme/');
define('DIR_CONFIG', 'C:\ApacheWebs\opencart\wwwhn/system/config/');
define('DIR_IMAGE', 'C:\ApacheWebs\opencart\wwwhn/image/');
define('DIR_CACHE', 'C:\ApacheWebs\opencart\wwwhn/system/cache/');
define('DIR_DOWNLOAD', 'C:\ApacheWebs\opencart\wwwhn/download/');
define('DIR_LOGS', 'C:\ApacheWebs\opencart\wwwhn/system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'hn_solutions');
define('DB_PREFIX', 'hn_');
?>