Ryan McCue

Results 402 comments of Ryan McCue

Seems like Airplane Mode should allow loopback connections; likely breaking built-in cron otherwise as well. cc @norcross, any insights?

Right, but by default, I'd think it should allow HTTP requests to the site's domain; WP's built-in cron stuff uses the same thing, as does @markjaquith's TLC Transients. I dunno,...

> how would you implement in Airplane? The same logic that's used with the `WP_HTTP_BLOCK_EXTERNAL` constant is a good start (although using the constant directly is probably a non-starter, per...

Possibly related to https://github.com/humanmade/docker-wordpress-php/issues/142

@dianadvorska Please note this is an open source/public repository :) We don't provide timelines for bug fixes generally; if this is actively causing problems, please file a support ticket.

I'm not able to replicate this on the test environment. With the code ```php if ( isset( $_GET['rmccue_cause_warning'] ) ) { add_action( 'init', function () { trigger_error( 'Test warning', E_USER_WARNING...

Have followed up in support to see if there's more detail about this.

Looks like you need to [configure the X-Ray daemon](https://docs.aws.amazon.com/xray/latest/devguide/xray-daemon-configuration.html) based on that, as it looks like you don't have an IAM instance profile.

This isn't free to read the data, both in terms of memory and time usage, so I'm not sure it makes sense for us to add for all requests. (Also,...

Sorry, typo, that should have said: > that `php://input` can only be read from **once** That is, the stream is exhausted once it's read from. I can't see any info...