-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
53 lines (24 loc) · 1.1 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
<?php
// HTTP
define('HTTP_SERVER', 'http://www.uselolli.com/');
// HTTPS
define('HTTPS_SERVER', 'https://www.uselolli.com/');
// DIR
define('DIR_APPLICATION', '/home/content/42/10981442/html/catalog/');
define('DIR_SYSTEM', '/home/content/42/10981442/html/system/');
define('DIR_DATABASE', '/home/content/42/10981442/html/system/database/');
define('DIR_LANGUAGE', '/home/content/42/10981442/html/catalog/language/');
define('DIR_TEMPLATE', '/home/content/42/10981442/html/catalog/view/theme/');
define('DIR_CONFIG', '/home/content/42/10981442/html/system/config/');
define('DIR_IMAGE', '/home/content/42/10981442/html/image/');
define('DIR_CACHE', '/home/content/42/10981442/html/system/cache/');
define('DIR_DOWNLOAD', '/home/content/42/10981442/html/download/');
define('DIR_LOGS', '/home/content/42/10981442/html/system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'uselolli.db.10981442.hostedresource.com');
define('DB_USERNAME', 'uselolli');
define('DB_PASSWORD', 'Divert0205!');
define('DB_DATABASE', 'uselolli');
define('DB_PREFIX', '');
?>