makkabi
Forum Replies Created
-
I had the same error once every day.
The problem is this line:
$data[‘unlocked’] = true;
$data is sometimes not an array, so a quick fix is to insert this lines directly before line 1487:
if(!is_array($data)){
continue;
}But this may cause other problems, so as I said, it’s just a quick fix, and the developer should really look into this.
Hi @aarin,
two update later, this simple one line issue still hasn’t been fixed. For your developers or anyone still having this issue, this is the fixed line 170:
return $this->get_protocol().'://'.(isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '' ).(isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '');
Forum: Plugins
In reply to: [EWWW Image Optimizer] Uncaught Error: syntax error, unexpected ‘)’@wpblogwriter Maybe you have another issue or some weird PHP settings, maybe double check if PHP 7.3+ is running, because this error is definitely as described.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Uncaught Error: syntax error, unexpected ‘)’There are two trailing commas on line 342 and 349, but this syntax is only allowed from PHP 7.3 on. So a quick fix is updating PHP (a good idea anyway!), or deleting the comma on the end of these two lines.
- This reply was modified 3 years, 9 months ago by makkabi.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Update to 3.1.33 Broke My SiteSame here, I had to deactivate the CiviCRM plugin, which also uses this GuzzleHttp package. So the solution is downgrade to 3.1.32, and hope for a quick bugfix update.
Forum: Plugins
In reply to: [Image Regenerate & Select Crop] Can’t log inThanks for the quick response, it’s fixed now!
Forum: Plugins
In reply to: [Image Regenerate & Select Crop] Can’t log inSame issue here, it is because of your plugin, the banner is displayed too early, so Cookies, Sessions etc. don’t work. Here’s the (anonymized) error:
Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w017f1cd/xxx.org/wp-content/plugins/image-regenerate-select-crop/image-regenerate-select-crop.php:317) in /www/htdocs/w017f1cd/xxx.org/wp-includes/pluggable.php on line 1251
Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w017f1cd/xxx.org/wp-content/plugins/image-regenerate-select-crop/image-regenerate-select-crop.php:317) in /www/htdocs/w017f1cd/xxx.org/wp-includes/pluggable.php on line 1254
@bmilligan15 This issue is NOT resolved, at least when you use ACF 5.8 Beta. Please see my mail exchange with the ACF support below.
Mar 25, 12:39am
Hey,
I just discovered that ACF PRO 5.8.0-beta4.1 doesn’t work together with the fairly popular slider plugin https://www.ads-software.com/plugins/soliloquy-lite/
There is no error visible in the console, but if you want to remove a slide from a slider, you only get a confirm dialog without text, and also if you want to add a new slide with “Select Files from Other Sources” (which means from the media library), the slide won’t be added.
As I said, no error message, but if I deactivate ACF PRO 5.8.0-beta4.1, it works. (I’m pretty sure the error was already around with at least ACF PRO 5.8.0-beta4).
—
Reply from ACF support:
Hi,We have had a couple of incompatibility issues with the plugin and I can replicate your issue on my end.
Unfortunately, It looks like the Soliloquy Lite” plugin is incorrectly localizing its data when ACF is active something that is causing the Ajax functions on the plugin to fail.
Kindly reach out to the plugin’s developer with the same information so that they may be able to fix the issue.
Hopefully, they will be able to help.
Have a good one.
Thanks,
Patrick
[email protected]Forum: Plugins
In reply to: [Gutenberg] Latest Update Version 2.3.0 has broken some BlocksSame here. Clean installation, no other plugin active, blank Underscores theme, MacOS, Safari and Firefox.
Error log:
[Error] [sprintf] property “selectedCount” does not exist
h (react-dom.min.3583f8be.js:162:324)
g (react-dom.min.3583f8be.js:160)
t (react-dom.min.3583f8be.js:167)
x (react-dom.min.3583f8be.js:166:249)
batchedUpdates (react-dom.min.3583f8be.js:169:175)
cc (react-dom.min.3583f8be.js:26)
jc (react-dom.min.3583f8be.js:35)
jcForum: Fixing WordPress
In reply to: Add New Plugin Page is showing error..My guess would be that this is a temporary issue that will go away, just as it happened recently when I tried to install a plugin. So the best strategy is probably to just wait. A next step would be to access the internet with a different connection, maybe via your smartphone hotspot, to see if the connection to www.ads-software.com is somehow blocked in your local network.
Forum: Plugins
In reply to: [Crazy Lazy] Not compatible with current jQuery versionOK, thanks, I’ll check again.