-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
35 lines (32 loc) · 1.43 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
31
32
33
34
35
<?php
// HTTP
define('HTTP_SERVER', 'http://'.$_SERVER['SERVER_NAME'].'/');
// HTTPS
define('HTTPS_SERVER', 'http://'.$_SERVER['SERVER_NAME'].'/');
// DIR
define('DIR_APPLICATION', 'E:/Akash/Aloha/app/');
define('DIR_SYSTEM', 'E:/Akash/Aloha/system/');
define('DIR_IMAGE', 'E:/Akash/Aloha/system/storage/data/image/');
define('DIR_DOC', 'E:/Akash/Aloha/system/storage/data/doc/');
define('DIR_AUDIO', 'E:/Akash/Aloha/system/storage/data/audio/');
define('DIR_IMAGE_CACHE', 'E:/Akash/Aloha/system/storage/data/image/cache/');
define('SDIR_IMAGE', 'system/storage/data/image/');
define('SDIR_DOC', 'system/storage/data/doc/');
define('SDIR_AUDIO', 'system/storage/data/audio/');
define('SDIR_IMAGE_CACHE', 'system/storage/data/image/cache/');
// define('DIR_LANGUAGE', 'E:/Akash/Aloha/catalog/language/');
define('DIR_TEMPLATE', 'E:/Akash/Aloha/app/view/');
define('DIR_CONFIG', 'E:/Akash/Aloha/system/config/');
define('DIR_CACHE', 'E:/Akash/Aloha/system/storage/cache/');
define('DIR_DOWNLOAD', 'E:/Akash/Aloha/system/storage/download/');
define('DIR_LOGS', 'E:/Akash/Aloha/system/storage/logs/');
// define('DIR_MODIFICATION', 'E:/Akash/Aloha/system/storage/modification/');
define('DIR_UPLOAD', 'E:/Akash/Aloha/system/storage/upload/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'achat');
define('DB_PORT', '3306');
// define('DB_PREFIX', '');