@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a debugging value value for post_max_size

Although 3200MB is nice, 32MB is plenty.

+1 -1
+1 -1
src/applications/config/check/PhabricatorStorageSetupCheck.php
··· 45 45 $post_max_size = ini_get('post_max_size'); 46 46 if ($post_max_size && ((int)$post_max_size > 0)) { 47 47 $post_max_bytes = phutil_parse_bytes($post_max_size); 48 - $post_max_need = (32 * 1024 * 1024) * 100; 48 + $post_max_need = (32 * 1024 * 1024); 49 49 if ($post_max_need > $post_max_bytes) { 50 50 $summary = pht( 51 51 'Set %s in your PHP configuration to at least 32MB '.