From 675c28ee10c2571ffe002064e214a3b641bfb995 Mon Sep 17 00:00:00 2001 From: jarod5001 <68397534+jarod5001@users.noreply.github.com> Date: Sun, 20 Mar 2022 23:52:56 +0100 Subject: [PATCH] database prefix must not be empty dbprefix = ''; // Any random string ending with _ --- conf/configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/configuration.php b/conf/configuration.php index 91ce604..5d7cd2b 100644 --- a/conf/configuration.php +++ b/conf/configuration.php @@ -43,7 +43,7 @@ class JConfig public $user = '__DB_USER__'; // Database username public $password = '__DB_PWD__'; // Database password public $db = '__DB_NAME__'; // Database name - public $dbprefix = 'ynh_'; // Any random string ending with _ + public $dbprefix = ''; // Any random string ending with _ public $dbencryption = 0; public $dbsslverifyservercert = false; public $dbsslkey = '';