1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Added mbstring and iconv as required extensions

Test Plan: Obvious.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, epriestley, davidreuss

Differential Revision: 1138
This commit is contained in:
David Reuss 2011-12-01 08:52:54 -08:00 committed by epriestley
parent 30b578cff6
commit dfffc78d38
2 changed files with 3 additions and 1 deletions

View file

@ -41,7 +41,7 @@ Otherwise, here's a general description of what you need to install:
- Apache (usually "httpd" or "apache2")
- MySQL Server (usually "mysqld" or "mysql-server")
- PHP (usually "php")
- Required PHP extensions: mysql, curl, pcntl (these might be something like
- Required PHP extensions: mbstring, iconv, mysql, curl, pcntl (these might be something like
"php-mysql" or "php5-mysql")
- Optional PHP extensions: gd, apc (special instructions for APC are available
below if you have difficulty installing it), xhprof (instructions below,

View file

@ -130,6 +130,8 @@ class PhabricatorSetup {
'hash',
'json',
'openssl',
'mbstring',
'iconv',
// There is a chance we might not need this, but some configurations (like
// Amazon SES) will require it. Just mark it 'required' since it's widely