Notes in README.md concerning sqlite-requirements and fixing lh-list
This commit is contained in:
parent
e373dc0810
commit
1fd308694c
2 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@ Required are
|
||||||
============
|
============
|
||||||
* Webserver like lighttpd or similar
|
* Webserver like lighttpd or similar
|
||||||
* php5
|
* php5
|
||||||
|
* if using sqlite3-database name resolving sqlite3 and php5-sqlite also needed
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
$totalLH = count($lastHeard);
|
$totalLH = count($lastHeard);
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP") && !defined("USESQLITE")) {
|
||||||
$TMP_CALL_NAME = "/tmp/Callsign_Name.txt";
|
$TMP_CALL_NAME = "/tmp/Callsign_Name.txt";
|
||||||
exec("wc -l ".$TMP_CALL_NAME." | cut -f1 -d' '", $output);
|
exec("wc -l ".$TMP_CALL_NAME." | cut -f1 -d' '", $output);
|
||||||
exec("wc -l ".DMRIDDATPATH." | cut -f1 -d' '", $output2);
|
exec("wc -l ".DMRIDDATPATH." | cut -f1 -d' '", $output2);
|
||||||
|
@ -10,8 +10,8 @@ exec("wc -l ".DMRIDDATPATH." | cut -f1 -d' '", $output2);
|
||||||
<!-- Standard-Panel-Inhalt -->
|
<!-- Standard-Panel-Inhalt -->
|
||||||
<div class="panel-heading"><?php
|
<div class="panel-heading"><?php
|
||||||
echo _("Last Heard List of today's")." ".$totalLH." "._("callsigns.")." ";
|
echo _("Last Heard List of today's")." ".$totalLH." "._("callsigns.")." ";
|
||||||
if (defined("ENABLEXTDLOOKUP")) {
|
if (defined("ENABLEXTDLOOKUP") && !defined("USESQLITE")) {
|
||||||
echo _("Cached")." (".$output[0]."/".$output2[0].")";
|
echo _("Cached")." (".$output[0]."/".$output2[0].")";
|
||||||
}
|
}
|
||||||
?><span class="pull-right clickable"><i class="glyphicon glyphicon-chevron-up"></i></span></div>
|
?><span class="pull-right clickable"><i class="glyphicon glyphicon-chevron-up"></i></span></div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
|
|
Loading…
Reference in a new issue