$ext";
}
}
if (count($problems) > 0) {
$phpini = php_ini_loaded_file();
$problems = implode("
", $problems);
echo "The following PHP extensions are required by litebans-php but were not found:
$problems";
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 "
Hint: Open php.ini in a text editor, search for
;extension=intl.so and remove the
; character on that line.";
}
?>