Page MenuHomePhabricator

Ensure __path__ is set on POST requests when running on CLI webserver
AbandonedPublic

Authored by epriestley on Nov 11 2019, 6:27 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 16 2024, 8:32 PM
Unknown Object (File)
Feb 3 2024, 11:25 PM
Unknown Object (File)
Jan 19 2024, 7:06 PM
Unknown Object (File)
Dec 27 2023, 9:49 PM
Unknown Object (File)
Nov 30 2023, 2:16 AM
Unknown Object (File)
Nov 25 2023, 10:48 PM
Unknown Object (File)
Nov 15 2023, 11:24 PM
Unknown Object (File)
Nov 8 2023, 4:59 AM
Subscribers

Details

Summary

Ref D20046 and https://secure.phabricator.com/D20046#254987 - the change causes the manually-set $REQUEST['__path__'] variable to get unset when $REQUEST is rebuilt from the original superglobals. This copies the value into $_GET in the CLI checks to ensure its available to the rebuilds (without duplicating the conditional logic in that method)

Test Plan

On a completely clean install of Phabricator running under CLI webserver, I finally succeeded at registering (in effect, the first ever POST request to the installation)

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

See T13575. This change should be obsoleted by D21506.

D21506 is pretty much just a higher-complexity version of this change that attempts to make this pathway a bit more robust to similar "rebuild the $_REQUEST superglobal"-style changes in the future. As far as I could tell, the description of the issue here is correct and this patch was likely the simplest correct change.