From c6eebad0cb94e672be826031348c8aec3856f46b Mon Sep 17 00:00:00 2001 From: plegall Date: Mon, 26 Jun 2023 14:30:52 +0200 Subject: [PATCH] display raw errors during install --- install.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.php b/install.php index 6cb577f8b..0fac49ed0 100644 --- a/install.php +++ b/install.php @@ -258,6 +258,12 @@ include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php'); if (isset($_POST['install'])) { install_db_connect($infos, $errors); + + if (count($errors) > 0) + { + print_r($errors); + } + pwg_db_check_charset(); $webmaster = trim(preg_replace('/\s{2,}/', ' ', $admin_name));