From 4d8a46d46eda9381e07aecc80e12ba9858781789 Mon Sep 17 00:00:00 2001 From: Dag Date: Wed, 26 Mar 2025 00:07:33 +0100 Subject: [PATCH] feat: add sanity check for required curl module (#4495) --- index.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.php b/index.php index ec7490d6..02ea9a3d 100644 --- a/index.php +++ b/index.php @@ -5,6 +5,11 @@ if (version_compare(\PHP_VERSION, '7.4.0') === -1) { exit("RSS-Bridge requires minimum PHP version 7.4\n"); } +if (!extension_loaded('curl')) { + http_response_code(500); + exit("RSS-Bridge requires curl (apt install php-curl)\n"); +} + require __DIR__ . '/lib/bootstrap.php'; require __DIR__ . '/lib/config.php';