Austin Passy

Results 41 comments of Austin Passy

Looks like the empty cache is called directly on the database, but the plugin is using the transients API to cache calls. If you're running any sort of object cache,...

> Hi @thefrosty, > Thanks for suggestion! Could you elaborate on the use case of having a constant for the license key, and how that would help? > > Thanks...

> I like this idea – thanks for submitting it! One small consideration is that we'd need to hide / alter the Licence key setting area. There are plenty of...

That's fine, I wasn't aware of a v2, would love to see a beta or alpha tag to try out.

So really 4.2.0 is newer in features over 5.0.0?

Would love to see Reactor building downgraded versions for each supported PHP version up to developed version. Example 7.2, 7.3, 7.4, 8.0 etc?

You can remove the called function with: ``` $add_variant = (new \ReflectionObject(wp_output_cache()))->getMethod('add_variant'); $add_variant->setAccessible(true); $add_variant->invoke(wp_output_cache(), $function); ```

We are in the same boat, and just added some plugins that are "expensive" and heavy on the server. I would suggest to everyone that they take a look at...

This has been a common issue around different plugins that have been moving to the PHP >= 7.4 supported Psr Container ^2.0.x. I have run into this issue in a...

Funny, I ended up running into this issue again today with a project, and was able to resolve it via Composers use as feature. In my projects composer require I...