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
|
<?php
/* phpTrackme
*
* Copyright(C) 2013 Bartek Fabiszewski (www.fabiszewski.net)
* Copyright(C) 2014 Mark Campbell-Smith (campbellsmith.me)
*
* This is free software; you can redistribute it and/or modify it under
* the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
$version = "0.1";
$mapapi = "gmaps";
// you may set your google maps api key
// this is not obligatory by now
// $gkey = "AIzaSyC2CYwhwpM2NLhTm6L6ZKg9-SBpvft4P4U";
// MySQL config
$dbhost = "127.0.0.1"; // mysql host, eg. localhost
$dbuser = "user"; // database user
$dbpass = "pass"; // database pass
$dbname = "runneruplive"; // database name
$salt = ""; // fill in random string here, it will increase security of password hashes
// other
// require login/password authentication
// (0 = no, 1 = yes)
$require_authentication = 0;
// admin user who has access to all users locations
$admin_user = " ";
// allow automatic registration of new users
// (0 = no, 1 = yes)
$allow_registration = 1;
// Default interval in seconds for live auto reload
$interval = 10;
// Default language
// (en, pl, de)
$lang = "en";
//$lang = "pl";
//$lang = "de";
// units
$units = "metric";
?>
|