Page MenuHomePhabricator

D16454.id39580.diff
No OneTemporary

D16454.id39580.diff

diff --git a/src/applications/config/check/PhabricatorPHPConfigSetupCheck.php b/src/applications/config/check/PhabricatorPHPConfigSetupCheck.php
--- a/src/applications/config/check/PhabricatorPHPConfigSetupCheck.php
+++ b/src/applications/config/check/PhabricatorPHPConfigSetupCheck.php
@@ -224,5 +224,26 @@
->setSummary($summary)
->setMessage($message);
}
+
+ $raw_post_data = (int)ini_get('always_populate_raw_post_data');
+ if ($raw_post_data != -1) {
+ $summary = pht(
+ 'PHP setting "%s" should be set to "-1" to avoid deprecation '.
+ 'warnings.',
+ 'always_populate_raw_post_data');
+
+ $message = pht(
+ 'The "%s" key is set to some value other than "-1" in your PHP '.
+ 'configuration. This can cause PHP to raise deprecation warnings '.
+ 'during process startup. Set this option to "-1" to prevent these '.
+ 'warnings from appearing.',
+ 'always_populate_raw_post_data');
+
+ $this->newIssue('php.always_populate_raw_post_data')
+ ->setName(pht('Disable PHP %s', 'always_populate_raw_post_data'))
+ ->setSummary($summary)
+ ->setMessage($message)
+ ->addPHPConfig('always_populate_raw_post_data');
+ }
}
}

File Metadata

Mime Type
text/plain
Expires
Wed, Mar 26, 7:54 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7370478
Default Alt Text
D16454.id39580.diff (1 KB)

Event Timeline