From 67b4e877f6ebf82ee9ec4f929dbedad678ae4c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:05:43 +0200 Subject: [PATCH] Update config.php --- conf/config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/config.php b/conf/config.php index a47ee93..5b47aa4 100644 --- a/conf/config.php +++ b/conf/config.php @@ -7,7 +7,7 @@ /*******************************************************************/ // Data folder (must be writeable by the web server user and absolute) -define('DATA_DIR', __DATA_DIR__); +define('DATA_DIR', '__DATA_DIR__/'); // Enable/Disable debug define('DEBUG', false); @@ -16,10 +16,10 @@ define('DEBUG', false); define('LOG_DRIVER', 'system'); // Log filename if the log driver is "file" -define('LOG_FILE', __DATA_DIR__/debug.log'); +define('LOG_FILE', '__DATA_DIR__/debug.log'); // Plugins directory -define('PLUGINS_DIR', __INSTALL_DIR__/plugins); +define('PLUGINS_DIR', '__INSTALL_DIR__/plugins'); // Plugins directory URL define('PLUGIN_API_URL', 'https://kanboard.org/plugins.json'); @@ -33,10 +33,10 @@ define('PLUGIN_INSTALLER', true); define('CACHE_DRIVER', 'memory'); // Cache folder to use if cache driver is "file" (must be writeable by the web server user) -define('CACHE_DIR', __DATA_DIR__/cache); +define('CACHE_DIR', '__DATA_DIR__/cache'); // Folder for uploaded files (must be writeable by the web server user) -define('FILES_DIR', __DATA_DIR__/files); +define('FILES_DIR', '__DATA_DIR__/files'); // Enable/disable email configuration from the user interface define('MAIL_CONFIGURATION', true);