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:
parent
30b578cff6
commit
dfffc78d38
2 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,7 @@ Otherwise, here's a general description of what you need to install:
|
||||||
- Apache (usually "httpd" or "apache2")
|
- Apache (usually "httpd" or "apache2")
|
||||||
- MySQL Server (usually "mysqld" or "mysql-server")
|
- MySQL Server (usually "mysqld" or "mysql-server")
|
||||||
- PHP (usually "php")
|
- 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")
|
"php-mysql" or "php5-mysql")
|
||||||
- Optional PHP extensions: gd, apc (special instructions for APC are available
|
- Optional PHP extensions: gd, apc (special instructions for APC are available
|
||||||
below if you have difficulty installing it), xhprof (instructions below,
|
below if you have difficulty installing it), xhprof (instructions below,
|
||||||
|
|
|
@ -130,6 +130,8 @@ class PhabricatorSetup {
|
||||||
'hash',
|
'hash',
|
||||||
'json',
|
'json',
|
||||||
'openssl',
|
'openssl',
|
||||||
|
'mbstring',
|
||||||
|
'iconv',
|
||||||
|
|
||||||
// There is a chance we might not need this, but some configurations (like
|
// 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
|
// Amazon SES) will require it. Just mark it 'required' since it's widely
|
||||||
|
|
Loading…
Reference in a new issue