Mibew does not use "iconv" library anymore

This commit is contained in:
Dmitriy Simushev 2014-12-29 09:29:13 +00:00
parent 6a17db4e04
commit ff1940cdc5
4 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ This repository contains the core of Mibew Messenger application.
## Server requirements
1. A webserver or web hosting account running on any major Operating System
2. PHP (5.3.3 and above) with PDO, pdo_mysql, gd, and iconv extensions
2. PHP (5.3.3 and above) with PDO, pdo_mysql and gd extensions
3. MySQL 5.0 and above
## Build from sources

View File

@ -6,7 +6,7 @@ REQUIREMENTS
* Apache web server 1.3.34 or above with the ability to use local .htaccess
files (mod_rewrite module is optional, but recommended)
* MySQL database 5.0 or above
* PHP 5.3.3 or above with PDO, pdo_mysql, gd, and iconv extensions
* PHP 5.3.3 or above with PDO, pdo_mysql and gd extensions
INSTALLATION

View File

@ -68,7 +68,7 @@ class AboutController extends AbstractController
*/
protected function getExtensionsInfo()
{
$required_extensions = array('PDO', 'pdo_mysql', 'gd', 'iconv');
$required_extensions = array('PDO', 'pdo_mysql', 'gd');
$info = array();
foreach ($required_extensions as $ext) {
if (!extension_loaded($ext)) {

View File

@ -490,7 +490,7 @@ class Installer
*/
protected function checkPhpExtensions()
{
$extensions = array('PDO', 'pdo_mysql', 'gd', 'iconv');
$extensions = array('PDO', 'pdo_mysql', 'gd');
foreach ($extensions as $ext) {
if (!extension_loaded($ext)) {