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