From f5690edc3cc67a3c5b6e410a8b78262286da599a Mon Sep 17 00:00:00 2001 From: Mitsukarenai Date: Wed, 28 May 2014 00:30:12 +0200 Subject: [PATCH] Add check for "openssl" and "curl" extensions ( issue #49 ) --- index.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.php b/index.php index 352cbb03..17636476 100644 --- a/index.php +++ b/index.php @@ -15,6 +15,13 @@ date_default_timezone_set('UTC'); error_reporting(0); //ini_set('display_errors','1'); error_reporting(E_ALL); // For debugging only. + +// extensions check +if (!extension_loaded('openssl')) + die('"openssl" extension not loaded. Please check "php.ini"'); +if (!extension_loaded('curl')) + die('"curl" extension not loaded. Please check "php.ini"'); + // FIXME : beta test UA spoofing, please report any blacklisting by PHP-fopen-unfriendly websites ini_set('user_agent', 'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20121202 Firefox/30.0 (rss-bridge/0.1; +https://github.com/sebsauvage/rss-bridge)'); // -------