1. Put the following php file in wp-content/mu-plugins/errorreporting.php
———————————————————–
<?php if (WP_DEBUG && WP_DEBUG_DISPLAY)
{
ini_set(‘error_reporting’, E_ALL & ~E_STRICT & ~E_DEPRECATED);
}
?>
————————————————————
worked fine!
1. Put the following php file in wp-content/mu-plugins/errorreporting.php
———————————————————–
<?php if (WP_DEBUG && WP_DEBUG_DISPLAY)
{
ini_set(‘error_reporting’, E_ALL & ~E_STRICT & ~E_DEPRECATED);
}
?>
————————————————————
worked fine!