-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsulley_config.php
31 lines (28 loc) · 1.03 KB
/
sulley_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
<?php
// HTTP
define('HTTP_SERVER', 'http://sulley.dm.ucf.edu/~dig4530c_group06/v2/');
define('HTTP_IMAGE', 'http://sulley.dm.ucf.edu/~dig4530c_group06/v2/image/');
define('HTTP_ADMIN', 'http://sulley.dm.ucf.edu/~dig4530c_group06/v2/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://sulley.dm.ucf.edu/~dig4530c_group06/v2/');
define('HTTPS_IMAGE', 'http://sulley.dm.ucf.edu/~dig4530c_group06/v2/image/');
// DIR
// ./
define('DIR_APPLICATION', './catalog/');
define('DIR_SYSTEM', './system/');
define('DIR_DATABASE', './system/database/');
define('DIR_LANGUAGE', './catalog/language/');
define('DIR_TEMPLATE', './catalog/view/theme/');
define('DIR_CONFIG', './system/config/');
define('DIR_IMAGE', './image/');
define('DIR_CACHE', './system/cache/');
define('DIR_DOWNLOAD', './download/');
define('DIR_LOGS', './system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'dig4530c_group06');
define('DB_PASSWORD', 'dig4530c_group06');
define('DB_DATABASE', 'dig4530c_group06');
define('DB_PREFIX', '');
?>