installer: mention lack of curl

This commit is contained in:
Andrew Dolgov 2013-04-02 13:24:49 +04:00
parent 8d192d025b
commit a55857db50
1 changed files with 20 additions and 2 deletions

View File

@ -283,9 +283,27 @@
exit;
}
?>
$notices = array();
<?php print_notice("Configuration check succeeded."); ?>
if (!function_exists("curl_init")) {
array_push($notices, "It is highly recommended to enable support for CURL in PHP.");
}
if (count($notices) > 0) {
print_notice("Configuration check succeeded with minor problems:");
print "<ul>";
foreach ($notices as $notice) {
print "<li>$notice</li>";
}
print "</ul>";
} else {
print_notice("Configuration check succeeded.");
}
?>
<h2>Checking database</h2>