-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
68 lines (52 loc) · 1.98 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
## DB-connection
$sql_type = "mysqli"; // SQL type. mysqli or mysql, recommended is mysqli because mysql is deprecated.
$sql_host = "localhost"; // SQL Host
$sql_user = "lancms"; // SQL username
$sql_pass = "ComPuterParty"; // Very very secret, if you read this, you should probably go shoot yourself, just to be safe
$sql_base = "lancms"; // The database to use
$sql_prefix = "GO"; // Someone asked for this a while back. prefix, and _ is added automatically
$lancms_session_cookie = "lancms-cake";
$language = "norwegian"; // The user might want to customize this him self... Might be a FIXME
$design_title = "lancms";
/**
* Allow pay on arrival?
* @var int
*/
$ticketOrderAllowPreorderPayOnArrival = false;
// Define it to use smarty or a native solution by including a template file in php.
$enableSmarty = false;
// Facebook Login
$facebook_appID = "";
$facebook_login = FALSE;
// Facebook likebox
// Remove # and point to your Facebook page URL:
# $facebook_likebox_url = 'http://www.facebook.com/GlobeLAN';
//----------------------------------------------------------------------------
// Payment config
$stripePaymentConfig = array(
"secretKey" => "",
"privateKey" => "",
"webhookSecret" => "",
"imageLogo" => "",
"companyName" => ""
);
//----------------------------------------------------------------------------
## Mail settings
$mail_from = '[email protected]';
# Put something usefull here if you want your logo in the page footer
# if you don't want it, comment it out
$design_footer['logo'] = 'http://default.globeorg.no/go.png';
$design_footer['width'] = 69;
$design_footer['height'] = 90;
$design_footer['url'] = 'http://default.globeorg.no/';
# cron type
$cron_type = 'include'; // Can be include or cron
$apiAuthenticationApps = [];
## don't touch, includes override config if it exists
if(file_exists(__DIR__ . "/OverrideConfig.php")) {
include_once __DIR__ . '/OverrideConfig.php';
}
global $sql_type;
global $lancms_session_cookie;
global $sql_prefix;