1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00
raspap-webgui/ajax/logging/clearlog.php
2022-09-27 11:46:59 +02:00

13 lines
280 B
PHP

<?php
require_once '../../includes/config.php';
require_once '../../includes/functions.php';
if (isset($_POST['logfile'])) {
$logfile = $_POST['logfile'];
// truncate requested log file
exec("sudo truncate -s 0 $logfile", $return);
echo json_encode($return);
}