From a478ab69e6a738697b93b0ad308f43868a979e09 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Mon, 15 Sep 2025 15:59:40 -0400 Subject: [PATCH] provide more descriptive reason for failure --- front/php/templates/security.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/php/templates/security.php b/front/php/templates/security.php index e140eeaa..fa91bdc3 100755 --- a/front/php/templates/security.php +++ b/front/php/templates/security.php @@ -48,7 +48,7 @@ if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'logout') { // Load configuration if (!file_exists(CONFIG_PATH)) { - die("Configuration file not found."); + die("Configuration file not found in " . $_SERVER['DOCUMENT_ROOT'] . "/../config/app.conf"); } $configLines = file(CONFIG_PATH);