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