09/09/2016 at 12:28 am
#390428
Keymaster
@ Jennai
Are you using WordFence and have the Falcon Cache feature enabled? If you are, this is code that is being run per their documentation to clear the cache.
https://docs.wordfence.com/en/Falcon_Cache#Clearing_the_cache
This was added in the last update so changes made in Connections will trigger the clear cache so the change will be shown on the site immediately instead of waiting for the page cache to refresh.
My guess is the code they gave in their documentation is incorrect.
Here’s what you can do to fix it…
- Login into your site with FTP.
- Navigate to the
../wp-content/plugins/connections/includes/
folder. - Edit this file
inc.plugin-compatibility.php
- Change this line:
include 'wp-load.php';
- To this:
//include 'wp-load.php';
- Save the file.
- Upload to the folder overwriting the original.
That should fix it. Let me know.