diff --git a/wallabag_compatibility_test.php b/wallabag_compatibility_test.php index da07862..a1fcdc2 100644 --- a/wallabag_compatibility_test.php +++ b/wallabag_compatibility_test.php @@ -22,6 +22,7 @@ $parallel_ok = ((extension_loaded('http') && class_exists('HttpRequestPool')) || $allow_url_fopen_ok = (bool)ini_get('allow_url_fopen'); $filter_ok = extension_loaded('filter'); $gettext_ok = function_exists("gettext"); +$gd_ok = extension_loaded('gd'); if (extension_loaded('xmlreader')) { $xml_ok = true; @@ -236,6 +237,11 @@ if (isset($_GET['from'])){ Data filtering Enabled Enabled' : 'Disabled'; ?> + + + GD + Enabled + Enabled' : 'Disabled'; ?> Tidy @@ -275,7 +281,7 @@ if (isset($_GET['from'])){

What does this mean?

    - +
  1. You have everything you need to run properly! Congratulations!
  2. @@ -312,6 +318,12 @@ if (isset($_GET['from'])){
  3. mbstring and iconv: You do not have either of the extensions installed. This will significantly impair your ability to read non-English feeds, as well as even some English ones.
  4. + +
  5. GD: You have GD support installed. No problems here.
  6. + +
  7. GD: The GD extension is not available. will not be able to download pictures locally on your server.
  8. + +
  9. Tidy: You have Tidy support installed. No problems here.