Update log.php

This commit is contained in:
Waldek 2019-08-20 18:24:12 +02:00 committed by GitHub
parent c7b73ed86c
commit a7aacf62f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ echo "<TR><TH>Date<TH>Time (local)<TH>Slot<TH>TG<TH>TG Name<TH>Callsign (DMR-Id)
// define location and name of logfile
// best practise is write logfile in the directory where this php script is saved because some php installations have problems to read files outside the webserver directories
$handle = fopen("lastheard.log","r");
$handle = fopen("/opt/HBmonitor/lastheard.log","r");
// import to array
while (($data = fgetcsv ($handle)) !==false)