From 2df2623430016373c6a899784519f053f1b704d0 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sun, 25 Mar 2018 13:11:15 +0200 Subject: [PATCH] [index] Add 'curl' extension check --- index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.php b/index.php index ea21799a..5827ab2c 100644 --- a/index.php +++ b/index.php @@ -80,6 +80,9 @@ if(!extension_loaded('mbstring')) if(!extension_loaded('simplexml')) die('"simplexml" extension not loaded. Please check "php.ini"'); +if(!extension_loaded('curl')) + die('"curl" extension not loaded. Please check "php.ini"'); + // configuration checks if(ini_get('allow_url_fopen') !== "1") die('"allow_url_fopen" is not set to "1". Please check "php.ini');