fanta8897
Forum Replies Created
-
@kaotik, note that I am not part of Wordfence Support. Just another Wordfence user trying to share what I used to workaround this issue so my site had minimal downtime and without having to delete/re-install any plugins. @wfasa could probably correct me if I am incorrect, but I believe the workaround wont cause any negative impact to the site and should also be overwritten in the next upgrade.
Feel free to implement the workaround I posted here: https://ww.wp.xz.cn/support/topic/conflict-with-cloudflare-plugin-upon-wordfence-update/
Until Wordfence release a change that removes the conflicts. Is the exact error you are encountering the includeFile() declaration method having conflicts?
Same error with a difference plugin conflict: https://ww.wp.xz.cn/support/topic/conflict-with-cloudflare-plugin-upon-wordfence-update/
I also put a workaround in that post that does not impede on the functionality of either:
Change line 323
includeFile($file);
to
includeFiles($file);and line 445
function includeFile($file)
to
function includeFiles($file)Or if you do not want to modify the wordfence plugin, do the same thing on the other plugin, so long as you ensure to update any mention of
includeFileto the new function nameI also put a workaround in that post that does not impede on the functionality of either:
Change line 323
includeFile($file);
to
includeFiles($file);and line 445
function includeFile($file)
to
function includeFiles($file)Or if you do not want to modify the wordfence plugin, do the same thing on the other plugin, so long as you ensure to update any mention of
includeFileto the new function name- This reply was modified 7 years, 8 months ago by fanta8897.