mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 10:00:49 +01:00
Merge branch 'master' of github.com:vichan-devel/Tinyboard
This commit is contained in:
commit
bd6e5da096
@ -13,7 +13,7 @@ Support and announcements: https://int.vichan.net/devel/
|
||||
|
||||
Requirements
|
||||
------------
|
||||
1. PHP >= 5.3
|
||||
1. PHP >= 5.4 (we still try to keep compatibility with php 5.3 as much as possible)
|
||||
2. MySQL/MariaDB server
|
||||
3. [mbstring](http://www.php.net/manual/en/mbstring.installation.php)
|
||||
4. [PHP GD](http://www.php.net/manual/en/intro.image.php)
|
||||
|
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…
Reference in New Issue
Block a user