Nawawi Jamili
Forum Replies Created
-
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] WooCommerce Stock Feature RequestHi there,
We don’t have that feature, but you can clear the cache every hour.
Copy the code here https://gist.github.com/nawawi/c4e68ac2a65e24e755ccb181e1fd3b34
and place it in wp-content/mu-plugins/docketcache_flush_every_hour.php
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Fatal error, can’t activate pluginHi 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 1 week, 6 days ago by Nawawi Jamili.
- This reply was modified 1 week, 6 days ago by Nawawi Jamili.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Docket Cache conflictHi there,
Thank you for your report, will test it once have a bit of free time.
Thanks.
Thank you for using Docket Cache and a nice review.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Docket Cache on a WooCommerce siteyou are welcome, glad to help, all the best.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Docket Cache on a WooCommerce siteHello Tony,
To be clear, Docket Cache is a file-based object caching plugin. Probably, it won’t work well with high-traffic woocommerce stores. To answer your question, you may try these configurations below:
CACHE OPTIONS
Object Cache Precaching: Disable
WordPress Menu Caching: Disable
WordPress Translation Caching: Disable
Admin Page Cache Preloading: Disable
Retain Transients in Db: EnableWOO TWEAKS
Deactivate WooCommerce Cart Fragments: Enable
Prevent robots crawling add-to-cart links: EnableSTORAGE OPTIONS
Cache Files Limit: 100000
Cache Disk Limit: 1G
Chunk Cache Directory: Disable
Real-time File Limit Checking: Enable
Auto Remove Stale Cache: Enable
Exclude Empty Object Data: DisableThanks.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi tthere,
Is it better than Redis Object Cache?
Nope. Redis is a server-based, and it’s more better than file-based like Docket Cache.
If I use this plugin, should I remove Redis-server ?
No, no need to remove it.
Thanks.
Hi there,
Go tto Configuration page and select Disable “Deactivate XML-RPC / Ping backs”
please refer to this article for more details https://help.dreamhost.com/hc/en-us/articles/11013621014676-Using-the-Docket-Cache-plugin
Thanks.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi there,
Docket Cache is an object caching plugin, and we can’t exclude pages. We can only exclude by object key and groups.
Please refer:
https://docs.docketcache.com/constants#docket_cache_ignored_groups
https://docs.docketcache.com/constants#docket_cache_ignored_keys
https://docs.docketcache.com/constants#docket_cache_ignored_groupkey
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Database Spam “Options Update”Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Database Spam “Options Update”“Deactivate WooCommerce Cart Fragments” how does it work? Cause my site still has the realtime cart after that
This option will turn off how the woocommerce cart fragment works by default. It will check if the “woocommerce cart hash” cookie exists and load the woocommerce cart fragment script when a click is triggered. The cart totals are updated instead of in real time to reduce the load to server.
https://github.com/nawawi/docket-cache/blob/master/includes/src/Tweaks.php#L604
“Post Missed Schedule Tweaks” What exactly does it do?
This option will check for any posts that were set to be published on a future date but have not yet been published due to cron issues. Docket Cache will publish them when the date has already been missed.
https://github.com/nawawi/docket-cache/blob/master/includes/src/Tweaks.php#L716
Thanks.