installer: mention lack of curl
This commit is contained in:
parent
8d192d025b
commit
a55857db50
|
@ -283,9 +283,27 @@
|
||||||
exit;
|
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>
|
<h2>Checking database</h2>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue