@jazir5
The Cache Purger already removes files created in WP_CONTENT_DIR.’/cache’ which is the default location Docket Cache creates it’s cached files.
I do not think it is necessary to customize that path in the Purger.
Also, Docket Cache also has mechinisms in place to clear it’s own caches.
-
This reply was modified 1 year, 10 months ago by
Kevin Pirnie. Reason: plugin spelling
Thread Starter
jazir5
(@jazir5)
Docket Cache also stores data in these directories:
htdocs/wp-content/docket-cache-data
htdocs/wp-content/cache/docket-cache
These won’t be purged simultaneously like the other caches will will it?
-
This reply was modified 1 year, 10 months ago by
jazir5.
The exact path the plugin stores it’s content is, is defined in the plugin as:
if (!\defined(‘DOCKET_CACHE_CONTENT_PATH’)) {
\define(‘DOCKET_CACHE_CONTENT_PATH’, WP_CONTENT_DIR);
}
WP_CONTENT_DIR is already cleared by my plugin as I already stated. This is NOT going to be changed, and I am NOT going to try to detect custom set paths.