09/10/2014 at 3:16 pm
#303530
Keymaster
@ kim879
Looks like you got yourself a relatively old version of WordPress and Connections installed, yes? What versions?
It is probably best to turn off the display PHP error reporting and log i instead… it is best practice to do that on a public site. Add this to your wp-config
file:
define('WP_DEBUG', false);
@ini_set('log_errors',1);
@ini_set('display_errors',0);
@ini_set('error_log','phperrors.log'); // path to server-writable log file
Since it is only a warning that is being generated, that should do the trick.
Hope this helps!