[ad_1]
Hi there,
These are steps to remove it manually
- Delete wp-content/plugins/docket-cache
- Delete wp-content/object-cache.php
- Delete wp-content/docket-cache-data
- Delete wp-content/cache/docket-cache — make sure no 1 and 2 completely deleted.
The error is mostly because it can’t handle woocommerce large data as transient or action_scheduler, which leads to memory exhaustion. However, further debugging will be needed to confirm it.
Thanks.
— Btw, here are the constants you can try if you want to try it later, place it in the wp-config.php file
define('DOCKET_CACHE_PRECACHE', false);
define('DOCKET_CACHE_TRANSIENTDB', true);
define('DOCKET_CACHE_MAXFILE', 50000);
define('DOCKET_CACHE_CHUNKCACHEDIR', false);
define('DOCKET_CACHE_MAXFILE_LIVECHECK', true);
define('DOCKET_CACHE_EMPTYCACHE_IGNORE', true);
define('DOCKET_CACHE_STALECACHE_IGNORE', true);
- This reply was modified 22 hours, 13 minutes ago by Nawawi Jamili.
- This reply was modified 22 hours, 11 minutes ago by Nawawi Jamili.
I see, thank you for your help! I’ll give it a shot. I’m marking this as resolved