Hi,
When I go to the site - Site Hardening - I tells me the WPConfig could be improved and I am failing WP Config debugging is disabled
Looking at my WP_Config file I see
define( ‘WP_DEBUG_DISPLAY’, false );
define( ‘WP_DEBUG_LOG’, true );
As such Debugging is disabled.
In order to get a pass for WP Config debugging is disabled setting I need to change this to:
define( ‘WP_DEBUG_DISPLAY’, false );
define( ‘WP_DEBUG_LOG’, false );
By default WordPress (at least on my provider) installes with WP_DEBUG_LOG = true
As this requires manual fixing, and I have over 60 sites i want to bring into WPMain, I am keen to resolve whether it flagging WP_DEBUG_LOG as an issue is by design or a mistake.
I’m running version 5.3.3 I note there may have been a similar issue in version 4.3
Thanks