From b0a960547c9be85804d20f2775e7820879b2e4a8 Mon Sep 17 00:00:00 2001 From: wrongecho Date: Thu, 2 Jan 2025 21:43:23 +0000 Subject: [PATCH] config.php has to be written to parent dir --- scripts/setup_cli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup_cli.php b/scripts/setup_cli.php index ba69e1f1..858ebc92 100644 --- a/scripts/setup_cli.php +++ b/scripts/setup_cli.php @@ -378,7 +378,7 @@ if (!$non_interactive) { } // finalize config -$myfile = fopen("config.php", "a"); +$myfile = fopen("../config.php", "a"); $txt = "\$config_enable_setup = 0;\n\n"; fwrite($myfile, $txt); fclose($myfile);