-
Notifications
You must be signed in to change notification settings - Fork 4
/
default-config.php
34 lines (28 loc) · 1.33 KB
/
default-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
<?php
// Instructions:
// This is the default configuration, you should create a "config.php" file
// and then put all the nodes you want to configure over there
// (Example: If you only need to change user and password, then just copy those values)
// any undefined config in your "config.php" file will fallback here,
// is not recommended edit this file since the git pull update method will
// cause problems.
return array(
// This configuration should be the same as the one on the MarketPlace plugin
"DB_HOST" => "localhost",
"DB_USER" => "user",
"DB_PASSWORD" => "123",
"DB_DATABASE" => "marketplace",
"DB_TABLE_CATALOG" => "catalog",
"DB_TABLE_SYNCINFO" => "syncinfo",
"DB_TABLE_ACCOUNTS" => "webaccounts", // If you don't enable "WEB_ACCOUNTS_ENABLED" you don't need to worry about this
// If you server has configured pages without .php sufix just remove it there:
"FILE_SUFIX" => ".php",
"ITEMS_PER_PAGE" => 20,
"MONEY_FORMAT" => "$%s",
"MONEY_DECIMALS" => 2,
"MONEY_DECIMAL_SEPARATOR" => ".",
"MONEY_THOUSAND_SEPARATOR" => ",",
"MOMENT_LANG" => "en",
"WEB_ACCOUNTS_ENABLED" => false, // true = Enabled, false = Disabled
);
?>