Browse Source

install.php: php 5.4 suggestion, remove imagick suggestion

imagick support is unsupported and deprecated
pull/40/head
Marcin Łabanowski 10 years ago
parent
commit
fe196be399
  1. 14
      install.php

14
install.php

@ -621,6 +621,13 @@ if ($step == 0) {
'required' => true,
'message' => 'vichan requires PHP 5.3 or better.',
),
array(
'category' => 'PHP',
'name' => 'PHP ≥ 5.4',
'result' => PHP_VERSION_ID >= 50400,
'required' => false,
'message' => 'vichan works best on PHP 5.4 or better.',
),
array(
'category' => 'PHP',
'name' => 'mbstring extension installed',
@ -670,13 +677,6 @@ if ($step == 0) {
'required' => true,
'message' => 'imagecreatefromgif() does not exist. This is a problem.',
),
array(
'category' => 'Image processing',
'name' => 'Imagick extension installed',
'result' => extension_loaded('imagick'),
'required' => false,
'message' => '(Optional) The PHP <a href="http://www.php.net/manual/en/imagick.installation.php">Imagick</a> (ImageMagick) extension is not installed. You may not use Imagick for better (and faster) image processing.',
),
array(
'category' => 'Image processing',
'name' => '`convert` (command-line ImageMagick)',

Loading…
Cancel
Save