Nawawi Jamili
Forum Replies Created
-
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi there,
Replace “unserialize” with “maybe_unserialize” since Docket Cache already unserialized it.
File: includes/class.zcwc.php
Line: 153
$mh_Object = unserialize(get_option('zcwc_intergration_details'));
Replace with:
$mh_Object = maybe_unserialize(get_option('zcwc_intergration_details'));
Line: 181
$mh_Object = unserialize(get_option($key));
Replace with:
$mh_Object = maybe_unserialize(get_option($key));
Thanks.
- This reply was modified 6 months, 3 weeks ago by Nawawi Jamili.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] wp rocketHi there,
it can work together with wp rocket?
Yes.
And last question: LSMCD has settings (username, set on 127.0.0.1:11211 and a password…) can we set this password and those data in your plugin?
Nope. You can’t use both memcached and Docket Cache.
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] Caching vs. custom sort orderHi there,
Seems the plugin does not support object cache, they directly update their data on the database.
Download the fix file and replace the intuitive-custom-post-order.php file.
Changes at line: 496-498, 596-598 and 641-643
Thanks.
- This reply was modified 7 months, 1 week ago by Nawawi Jamili.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi there,
The source code is always in github, you may refer to it here https://github.com/nawawi/docket-cache
Thanks.
Hi,
I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi there,
The error is a warning notice by PHP when the passed string is not unserializeable. Docket Cache takes care of these warnings carefully but can be caught by other dev tool plugins like query monitor.
Please download and test the dev version here https://docketcache.com/devtest/docket-cache-230802-rc4.zip, hopefully, it will be a quick fix at the moment until the next release.
Thanks.
Hi there,
The notice is from the LiteSpeed plugin, nothing we can do. You can use Docket Cache without conflict since you have disabled the LiteSpeed Object Cache feature.
Thanks.
Hi there,
Yes. Docket Cache needs to be installed for each instance of WordPress unless it is installed on a multisite setup.
Thanks.
Alright then, I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.
Thanks.
Hi there,
Please follow these steps to start it from fresh:
- Uninstall Docket Cache
- Delete wp-content/cache/docket-cache
- Delete wp-content/docket-cache-data
- Install and activate Docket Cache
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] cronbotHi there,
You don’t need the cronbot if you have a real cron. Cronbot only works “as-is” and pings to your server every 1 hour. Currently, it’s pretty heavy and probably failed to ping your server.
Thanks.
Forum: Plugins
In reply to: [Docket Cache - Object Cache Accelerator] MultiNetwork compatibility?Not sure if you need two ‘network-x’
“network-x” will be automatically created by the docket cache, you only need to define “DOCKET_CACHE_PATH_NETWORK_2” with “/var/www/mydomain.com/wp-content/cache/docket-cache/sub”
For the next sub-network, define it with the same path “/var/www/mydomain.com/wp-content/cache/docket-cache/sub”
“DOCKET_CACHE_PATH_NETWORK_3” with “/var/www/mydomain.com/wp-content/cache/docket-cache/sub”
Whether or not, guess the folders to mount to RAM disk are then
- /wp-content/cache/docket-cache/main
- /wp-content/cache/docket-cache/sub/network-x
Yes.
Thanks.
Nope. You can’t use both, as both use the same drop-in file “object-cache.php”.