r4bb1t
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] site checkout disabled after update@anastas10s Reverting to 3.3.0 seems to work on my end… I’ll have to look into 3.4.1.
Forum: Plugins
In reply to: [WooCommerce Square] site checkout disabled after updateFor my part, if it helps, it’s not a false positive–the Square plugin doesn’t load any of its features.
Forum: Plugins
In reply to: [WooCommerce Square] site checkout disabled after update@anastas10s The updated logic
is_opcache_save_message_enabled()inWooCommerce_Square_Loader(line 406) in 3.4.0 doesn’t work the same way as it did before (though it’s more robust, for sure), and I think that’s what’s causing the issue (at least for me).In my case, I don’t have either cache module loaded (Zend Optimizer+ or Zend OPcache), so both
$zend_optimizer_plusand$zend_opcachein that function will be false, and sois_opcache_save_message_enabled()will also return false. Unfortunately,is_environment_compatible()(line 349) assumes that means it’s an invalid config, and errors out.It’s not an invalid config–I don’t even have caching turned on to need to turn on
save_comments. I feel like that logic needs another update to account for setups where opcode caching isn’t turned on and the bug it’s trying to fix doesn’t apply.Forum: Plugins
In reply to: [WooCommerce Square] site checkout disabled after updateI’m still a little confused, I think. I don’t have the opcache module installed, but it’s still giving me the same error.
Does this mean opcache is now required for this plugin to work, period?