diff --git a/wallabag_compatibility_test.php b/wallabag_compatibility_test.php index a1fcdc2af..3f9ff59f9 100644 --- a/wallabag_compatibility_test.php +++ b/wallabag_compatibility_test.php @@ -14,6 +14,7 @@ $php_ok = (function_exists('version_compare') && version_compare(phpversion(), ' $pcre_ok = extension_loaded('pcre'); $zlib_ok = extension_loaded('zlib'); $mbstring_ok = extension_loaded('mbstring'); +$dom_ok = extension_loaded('DOM'); $iconv_ok = extension_loaded('iconv'); $tidy_ok = function_exists('tidy_parse_string'); $curl_ok = function_exists('curl_exec'); @@ -24,6 +25,7 @@ $filter_ok = extension_loaded('filter'); $gettext_ok = function_exists("gettext"); $gd_ok = extension_loaded('gd'); + if (extension_loaded('xmlreader')) { $xml_ok = true; } elseif (extension_loaded('xml')) { @@ -233,6 +235,11 @@ if (isset($_GET['from'])){
gettext enabled. No problems here.Zlib enabled. This allows SimplePie to support GZIP-encoded feeds. No problems here.Zlib extension is not available. SimplePie will ignore any GZIP-encoding, and instead handle feeds as uncompressed text.mbstring and iconv installed! This will allow to handle the greatest number of languages. No problems here.mbstring is installed, but iconv is not.iconv is installed, but mbstring is not.Zlib enabled. This allows SimplePie to support GZIP-encoded feeds. No problems here.Zlib extension is not available. SimplePie will ignore any GZIP-encoding, and instead handle feeds as uncompressed text.mbstring and iconv installed! This will allow to handle the greatest number of languages. No problems here.mbstring is installed, but iconv is not.iconv is installed, but mbstring is not.GD support installed. No problems here.GD extension is not available. will not be able to download pictures locally on your server.GD support installed. No problems here.GD extension is not available. will not be able to download pictures locally on your server.Tidy support installed. No problems here.Tidy extension is not available. should still work with most feeds, but you may experience problems with some.cURL support installed. No problems here.cURL extension is not available. SimplePie will use fsockopen() instead.HttpRequestPool or curl_multi support installed. No problems here.HttpRequestPool or curl_multi support is not available. will use file_get_contents() instead to fetch URLs sequentially rather than in parallel.Tidy support installed. No problems here.Tidy extension is not available. should still work with most feeds, but you may experience problems with some.cURL support installed. No problems here.cURL extension is not available. SimplePie will use fsockopen() instead.HttpRequestPool or curl_multi support installed. No problems here.HttpRequestPool or curl_multi support is not available. will use file_get_contents() instead to fetch URLs sequentially rather than in parallel.