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())); } ?>