-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.php.example
42 lines (39 loc) · 1.75 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
<?php
/*******************
GENERAL SERVERCONFIG
*******************/
$cqrweblog_root="/path/"; // webserver root for cqrweblog, relative to your webroot, for http://server:port/path its just /path
$hostname="localhost"; // hostname of mysql-server
$dbuser="cqrlog"; // mysql-username
$dbpass="password123"; // mysql-passwort
$db="cqrlog_common"; // default database of cqrlog, dont change unless you know what you are doing!
$port=3306; // default database of cqrlog, dont change unless you know what you are doing!
/*******************
GENERAL LOG SETTINGS
*******************/
$defaultlog="1"; // this is the default log (override: log_id=N)
$defaultcount="50"; // count of qsos to show per default in the tables
$max_public_count="50"; // max count of qsos to show on the public pages
$publog_enabled=true; // enable public log, true or false
$pubsearch_enabled=true; // if publog is enabled, enable/disable logsearch for visitors
$debugmode=false; // debug-mode
$exportdir="tmp/"; // where to export the adi files? has to be readable/writable by the webserver
$hamqth_api = true; // enable/disable hamqth-api (switches to local dxcc resolution and disables cluster, if false)
// if your cqrweblog instance is very slow, consider turning $hamqt_api to false, hamqth.com might have problems!
$cluster_spot_num =50;
$enable_changelog = true; // show link to changelog in header
/**************
DEFAULT REPORTS
**************/
$defaultmode="CW";
$default_cw_rapport="599";
$default_ssb_rapport="59";
/*************
CLUSTER COLORS
*************/
$atnocolor = "red";
$newbandcolor ="deeppink";
$newmodecolor = "green";
$confirmedcolor ="black";
$workedcolor="blue";
?>