Drew Butler
Drew Butler
I've added missing settings in Automattic/wp-super-cache#215, along with the following: - `cache_disable_locking` AND `cache_mutex_disabled` are the same thing, I've merged them into just `cache_disable_locking`. - `cache_readonly` AND `cache_writable` are notices...
With Cache Stats, are you talking about reformating this response: GET /wp-json/wp-super-cache/v1/stats ``` { "supercache": { "expired": 0, "cached": 0, "fsize": 0 }, "wpcache": { "expired": 0, "cached": 0, "fsize":...
Regarding `is_super_cache_enabled` being set properly, this comes from the `$super_cache_enabled` global directly. This one definitely needs some input from @donnchawp, since he won't need to dig as much to find...
In terms of the saving, I've refactored that endpoint a bit to be more explicit in the mapping of fields to saving methods and in the process uncovered some typos...
@donnapep ^^^
Definitely a work in progress. The internals of WPSC don't lend themselves very well to this type of work, so it is going to be a lot of trial and...