forked from binarymaster/3WiFi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php-distr
58 lines (50 loc) · 1.24 KB
/
config.php-distr
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
<?php
/**
* Configuration file.
* All settings must be there.
*/
// Данные входа в БД
define('DB_SERV', 'localhost');
define('DB_NAME', '3wifi');
define('DB_USER', 'root');
define('DB_PASS', '');
// Settings block
define('TRY_USE_MEMORY_TABLES', false);
define('DEBUG_SQLQUERY', false);
define('MEMORY_TABLES_RELEVANCE_EXPIRES', 60*60*6); // 6 hours
// Tables
define('BASE_TABLE', 'base');
define('GEO_TABLE', 'geo');
define('BASE_TABLE_CONST', BASE_TABLE);
define('GEO_TABLE_CONST', GEO_TABLE);
define('BASE_MEM_TABLE', 'mem_base');
define('GEO_MEM_TABLE', 'mem_geo');
define('STATS_TABLE', 'stats');
// Stats
define('TOP_PORT', 30);
define('TOP_AUTH', 100);
define('TOP_NAME', 30);
define('TOP_BSSID', 30);
define('TOP_ESSID', 30);
define('TOP_SECURITY', 30);
define('TOP_WIFI_KEY', 30);
define('TOP_WPS_PIN', 30);
define('TOP_DNS', 30);
define('TOP_SSID', 10);
// Maps
define('MAX_ZOOM_LEVEL', 23);
define('MAX_YANDEX_ZOOM', 18);
define('DEFAULT_LAT', 55.76);
define('DEFAULT_LON', 37.64);
define('DEFAULT_RAD', 2);
// Users
define('LOGIN_MIN', 5);
define('LOGIN_MAX', 30);
define('NICK_MIN', 5);
define('NICK_MAX', 30);
define('PASS_MIN', 6);
define('PASS_MAX', 100);
define('FAV_MAX', 200);
define('LOC_MAX', 100);
define('INVITE_LEN', 12);
?>