mirror of
https://github.com/Mibew/mibew.git
synced 2025-01-31 05:20:30 +03:00
parent
8457e51717
commit
eccbb59bcc
@ -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, cURL and gd extensions
|
||||
2. PHP (5.3.3 and above) with PDO, pdo_mysql, cURL, mbstring and gd extensions
|
||||
3. MySQL 5.0 and above
|
||||
|
||||
## Build from sources
|
||||
|
@ -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, cURL and gd extensions
|
||||
* PHP 5.3.3 or above with PDO, pdo_mysql, cURL, mbstring and gd extensions
|
||||
|
||||
INSTALLATION
|
||||
|
||||
|
@ -63,7 +63,7 @@ class AboutController extends AbstractController
|
||||
*/
|
||||
protected function getExtensionsInfo()
|
||||
{
|
||||
$required_extensions = array('PDO', 'pdo_mysql', 'gd', 'curl');
|
||||
$required_extensions = array('PDO', 'pdo_mysql', 'gd', 'curl', 'mbstring');
|
||||
$info = array();
|
||||
foreach ($required_extensions as $ext) {
|
||||
if (!extension_loaded($ext)) {
|
||||
|
@ -529,7 +529,7 @@ class Installer
|
||||
*/
|
||||
protected function checkPhpExtensions()
|
||||
{
|
||||
$extensions = array('PDO', 'pdo_mysql', 'gd', 'curl');
|
||||
$extensions = array('PDO', 'pdo_mysql', 'gd', 'curl', 'mbstring');
|
||||
|
||||
foreach ($extensions as $ext) {
|
||||
if (!extension_loaded($ext)) {
|
||||
|
Loading…
Reference in New Issue
Block a user