revert debug

This commit is contained in:
leosw
2025-08-30 11:43:16 +02:00
parent a8bc3e7ef7
commit 6b3edaed02
2 changed files with 3 additions and 3 deletions

View File

@@ -125,8 +125,8 @@ if(isset($controller->splitted_url[1]) && $user->rankIsHigher("moderator")) {
$head['title'] = "Statistiques";
$report = $config['abs_root_folder'];
$command = '(zcat /var/log/nginx/kabano.org-access.log*.gz && cat /var/log/nginx/kabano.org-access.log.1) | goaccess --log-format=COMBINED -o '.escapeshellarg($report);
/* exec($command, $output, $result);
*/ $output = shell_exec($command);
exec($command, $output, $result);
include ($config['views_folder']."d.admin.stats.html");
}
else {

View File

@@ -11,7 +11,7 @@
<h1><?=$head['title']?></h1>
<br>
<h3>Retour de l'execution de la commande :</h3><br>
<pre><? print_r($output);
<pre><?
foreach($output as $line) {
echo $line."<br>";
}