auth stack page, monitor cache fix, symlink install

This commit is contained in:
Gmer4Lfe
2026-06-05 19:20:28 -04:00
parent d9ed8c7704
commit a5936331c9
7 changed files with 1277 additions and 17 deletions
+5 -3
View File
@@ -2,9 +2,11 @@
header('Content-Type: application/json');
require_once dirname(__DIR__) . '/include/config.php';
$_vv_cached = vv_cache_read('monitor', 300);
if ($_vv_cached !== null) { echo json_encode($_vv_cached); exit; }
unset($_vv_cached);
if (!isset($_GET['live'])) {
$_vv_cached = vv_cache_read('monitor', 300);
if ($_vv_cached !== null) { echo json_encode($_vv_cached); exit; }
unset($_vv_cached);
}
require_once dirname(__DIR__) . '/include/monitor.php';
require_once dirname(__DIR__) . '/include/vms.php';