-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
27 lines (24 loc) · 939 Bytes
/
config.php
File metadata and controls
27 lines (24 loc) · 939 Bytes
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://localhost/opencart/');
// HTTPS
define('HTTPS_SERVER', 'http://localhost/opencart/');
// DIR*
define('DIR_APPLICATION', 'C:\wamp\www\opencart/catalog/');
define('DIR_SYSTEM', 'C:\wamp\www\opencart/system/');
define('DIR_DATABASE', 'C:\wamp\www\opencart/system/database/');
define('DIR_LANGUAGE', 'C:\wamp\www\opencart/catalog/language/');
define('DIR_TEMPLATE', 'C:\wamp\www\opencart/catalog/view/theme/');
define('DIR_CONFIG', 'C:\wamp\www\opencart/system/config/');
define('DIR_IMAGE', 'C:\wamp\www\opencart/image/');
define('DIR_CACHE', 'C:\wamp\www\opencart/system/cache/');
define('DIR_DOWNLOAD', 'C:\wamp\www\opencart/download/');
define('DIR_LOGS', 'C:\wamp\www\opencart/system/logs/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'opencartdb');
define('DB_PREFIX', 'oc_');
?>