You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
544 B
PHTML
17 lines
544 B
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
include('config.inc.php');
|
||
|
|
||
|
$cmdid = isset($_GET['cmdid']) ? $_GET['cmdid'] : '';
|
||
|
$channel = isset($_GET['ch']) ? intval($_GET['ch']) : 1;
|
||
|
|
||
|
$result['ts'] = time();
|
||
|
$cmd = "/usr/local/bin/xympadmn --server=127.0.0.1 --port=6891 --act=capture --channel=" . $channel . " --preset=255 --cmdid=" . $cmdid;
|
||
|
exec($cmd, $output, $result_code);
|
||
|
|
||
|
$result['output'] = $output;
|
||
|
$result['cmd'] = $cmd;
|
||
|
$result['result_code'] = $result_code;
|
||
|
header ('Content-type: application/json; charset=utf-8');
|
||
|
echo json_encode($result, JSON_UNESCAPED_UNICODE);
|