1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 12:30:56 +01:00

Fix a debugging value value for post_max_size

Although 3200MB is nice, 32MB is plenty.
This commit is contained in:
epriestley 2015-03-15 11:57:50 -07:00
parent 7482d260b0
commit 8a6acf88e0

View file

@ -45,7 +45,7 @@ final class PhabricatorStorageSetupCheck extends PhabricatorSetupCheck {
$post_max_size = ini_get('post_max_size');
if ($post_max_size && ((int)$post_max_size > 0)) {
$post_max_bytes = phutil_parse_bytes($post_max_size);
$post_max_need = (32 * 1024 * 1024) * 100;
$post_max_need = (32 * 1024 * 1024);
if ($post_max_need > $post_max_bytes) {
$summary = pht(
'Set %s in your PHP configuration to at least 32MB '.