Array to string conversion
-
Hi,
We are getting a lot of these since the last update …
[03-Jul-2025 12:17:57 UTC] E_WARNING: Array to string conversion in /wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php on line 1917Changing that line from …
return wfWAFUtils::json_decode(@(string)$value, true);…. to …
return is_array($value) ? null : wfWAFUtils::json_decode(@(string)$value, true);… should resolve the issue.
We know that we can turn off our error log but we use it to identify issues so we don’t need to be advised of that.
Thank you.
Oliver
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.