nierdz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP OPcache] The plugin does not have a valid header.Do you have wp-rocket ? The same weird bug happened with this plugin here
Forum: Plugins
In reply to: [WP OPcache] undefined timestampI suspect OPcache is misconfigured.
Could you run this script:
<?php echo '<pre>' . var_export(opcache_get_configuration(), true) . '</pre>'; echo '<pre>' . var_export(opcache_get_status(), true) . '</pre>';
And give me the FULL result please ?
Forum: Plugins
In reply to: [WP OPcache] w opcache will not installThanks for this information.
The plugin works with php 7.3 and I suspect wp-rocket which change headers to be the root cause of this problem.Could you tell what you change in wp-rocket to make it works for the record ?
I will redirect the next guy coming with this error to this thread ??Forum: Plugins
In reply to: [WP OPcache] w opcache will not installSame question, can you install other plugins ?
Forum: Plugins
In reply to: [WP OPcache] opcache in wordpressHello, PHP OPcache is enable for ALL PHP application that run on your server so WP is already using it. No need for a plugin to use it.
This plugins permits you to flush OPcache and get some statistics about it but no need to have it to use OPcache.
Forum: Plugins
In reply to: [WP OPcache] OPcache is NOT cleared after WordPress UpdateThank you for this useful bug report !
I’ll look into this as soon as possible.Forum: Plugins
In reply to: [WP OPcache] w opcache will not installHi @jackmullen
I just tried to uninstall and install it and it works perfectly. Are you sure this problem only happens with wp-opcache and not all plugins ?
Forum: Plugins
In reply to: [WP OPcache] WP OPcache using wrong time zoneI just found out how to fix this bug. The fix is in the new release 4.1.3. Let me know if this works for you.
Forum: Plugins
In reply to: [WP OPcache] WP OPcache using wrong time zoneI have the same issue, it’s what
opcache_get_status
outputs and I don’t know how to change it. I will look into this and try to fix it but I don’t know if it’s even possible…Forum: Plugins
In reply to: [WP OPcache] define( ‘WP_CACHE’, true );Nope, it’s not related.
Forum: Plugins
In reply to: [WP OPcache] Plugin doesnt clear opcache from my .cagefs directorySorry, I tried to reproduce this bug but I can’t find a way to reproduce it.
By the way, why do you use file cached for OPcache ? It’s way slower than RAM cached. Is there any particular reason ?
Forum: Plugins
In reply to: [WP OPcache] PHP.ini IssueAny news about this @dbase66 ?
Forum: Plugins
In reply to: [WP OPcache] PHP.ini IssueI think I found it, this is when you set
opcache.file_cache_only
totrue
. This partially disableopcache_get_status()
.Could you try to put this parameter to false, this is the default
Forum: Plugins
In reply to: [WP OPcache] PHP.ini Issuewhat’s your hosting solution ?
Forum: Plugins
In reply to: [WP OPcache] PHP.ini IssueMaybe this function is disabled on your host ?
Could you test a php file like this one please :<?php echo ini_get('disable_functions'); ?>
- This reply was modified 3 years, 4 months ago by nierdz.