forked from tobiasv/MyBlitzortung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php.example
49 lines (32 loc) · 1.22 KB
/
config.php.example
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
<?php
/*******************************************************************/
/* Main Config file for MyBlitzortung */
/* */
/* See file "includes/default_settings.inc.php" for more */
/* information about the settings. */
/* */
/* Never put any characters, spaces etc. before "<?php" or */
/* otherwise all images won't work! */
/*******************************************************************/
//Database
define("BO_DB_USER", "blitzortung");
define("BO_DB_PASS", "atYu9jMBaSGsnys4");
define("BO_DB_NAME", "blitzortung");
define("BO_DB_HOST", "localhost");
define("BO_DB_PREF", "bo_");
//The update secret
define('BO_UPDATE_SECRET', '');
//Station Settings
define("BO_LAT", 0.000);
define("BO_LON", 0.000);
define("BO_STATION_NAME", "");
//Blitzortung.org Stuff
define("BO_USER", "");
define("BO_PASS", "");
define("BO_REGION", 1);
define("BO_STATION_ID", "");
//Your timezone
define("BO_TIMEZONE", "UTC");
//To see error messages, enable this (set to true)
define("BO_DEBUG", false);
?>