From 0f9687438bf1dee046a29f06ecb84a6b3ffc71ab Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Wed, 03 Feb 2010 03:35:28 -0500
Subject: [PATCH] - update requirements, remove GD check
---
INSTALL | 7 +++----
installer/check.php | 3 +--
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/INSTALL b/INSTALL
index 5263355..6bf03a8 100644
--- a/INSTALL
+++ b/INSTALL
@@ -12,10 +12,9 @@
* The Apache or Lighttpd Webserver
* .htaccess support allowing overrides for DirectoryIndex
* PHP Version 5.2 or greater including
- - PCRE (perl compatible regular expression)
- - DOM (xml document object model)
+ - PCRE, DOM, JSON, XML, Session, Sockets (required)
- libiconv (recommended)
- - mbstring (optional)
+ - mbstring, fileinfo, mcrypt (optional)
* php.ini options:
- error_reporting E_ALL & ~E_NOTICE (or lower)
- memory_limit (increase as suitable to support large attachments)
@@ -23,7 +22,7 @@
- session.auto_start disabled
- zend.ze1_compatibility_mode disabled
* PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker
-* A MySQL or PostgreSQL database engine or the SQLite extension for PHP
+* A MySQL, PostgreSQL or MSSQL database engine or the SQLite extension for PHP
* One of the above databases with permission to create tables
* An SMTP server or PHP configured for mail delivery
diff --git a/installer/check.php b/installer/check.php
index 3afbdf7..e75c814 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -6,7 +6,7 @@
$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv',
'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt',
- 'GD' => 'gd');
+);
$required_libs = array('PEAR' => 'PEAR.php', 'MDB2' => 'MDB2.php',
'Net_SMTP' => 'Net/SMTP.php', 'Mail_mime' => 'Mail/mime.php',
@@ -30,7 +30,6 @@
'Multibyte' => 'http://www.php.net/manual/en/book.mbstring.php',
'Mcrypt' => 'http://www.php.net/manual/en/book.mcrypt.php',
'OpenSSL' => 'http://www.php.net/manual/en/book.openssl.php',
- 'GD' => 'http://www.php.net/manual/en/book.image.php',
'JSON' => 'http://www.php.net/manual/en/book.json.php',
'DOM' => 'http://www.php.net/manual/en/book.dom.php',
'PEAR' => 'http://pear.php.net',
--
Gitblit v1.9.1