mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:45:56 +00:00
installer: mention lack of curl
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user