From 584f4de07b9d9f1f213a210e9d12ed054aa0fb4d Mon Sep 17 00:00:00 2001
From: ruan <2369127-ruany@users.noreply.gitlab.com>
Date: Sat, 13 Aug 2022 22:22:59 +0200
Subject: [PATCH] Clarify error/missing-extensions
---
error/missing-extensions.php | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/error/missing-extensions.php b/error/missing-extensions.php
index 7152f3a..2abd950 100644
--- a/error/missing-extensions.php
+++ b/error/missing-extensions.php
@@ -24,9 +24,10 @@
echo(implode("
", $problems));
$phpini = php_ini_loaded_file();
- echo "
These extensions can be enabled in php.ini.";
+ echo "
Please ensure that the correct php-intl and php-mysql packages are installed.";
+ echo "
After installation, these extensions can be enabled in php.ini.";
echo "
php.ini location: " . $phpini . "";
- echo "
List of currently loaded extensions:
";
+ echo "
List of currently loaded extensions:
";
echo(implode(', ', get_loaded_extensions()));
}
?>