Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15433858
D16454.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16454.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 12:55 AM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7370478
Default Alt Text
D16454.diff (1 KB)
Attached To
Mode
D16454: Add a setup warning for "always_populate_raw_post_data"
Attached
Detach File
Event Timeline
Log In to Comment