We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We're having issues that our webhooks are returning a success header when they shouldn't;
On our php-fpm + nginx setup the wp core function status_header used here as a higher priority than the method setHttpResponseCode function uses.
status_header
setHttpResponseCode
We've manually patched the setHttpResponseCode function to use the status_header function, and that seems to fix the issue.
We run Lando with the WordPress recipe and we're able to reproduce it there as well as on our servers at Kinsta.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We're having issues that our webhooks are returning a success header when they shouldn't;
On our php-fpm + nginx setup the wp core function
status_header
used here as a higher priority than the methodsetHttpResponseCode
function uses.We've manually patched the setHttpResponseCode function to use the
status_header
function, and that seems to fix the issue.We run Lando with the WordPress recipe and we're able to reproduce it there as well as on our servers at Kinsta.
The text was updated successfully, but these errors were encountered: