You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, while doing development, in 99% of the cases I set these constants (copied from your .wpsites.php config file that I created while testing the tool):
Unfortunately, the WP_DEBUG_DISPLAY is never set to true because enable_error_logging which is true by default explicitly sets it to false. I think you run enable_error_logging after the defaults.constant are set and effectively overriding the value.
Setting it to "enable_error_logging" => null, behaves the same way as true.
So I it looks like I can't override its behavior, for example, disabling it to do anything with constants.
The text was updated successfully, but these errors were encountered:
It looks like there was a bug impacting any custom constants where the value was a boolean. I just fixed it in 1.10.1. Can you give it a try when you get a chance?
So, while doing development, in 99% of the cases I set these constants (copied from your
.wpsites.php
config file that I created while testing the tool):Unfortunately, the
WP_DEBUG_DISPLAY
is never set totrue
becauseenable_error_logging
which istrue
by default explicitly sets it tofalse
. I think you runenable_error_logging
after thedefaults.constant
are set and effectively overriding the value.Setting it to
"enable_error_logging" => null,
behaves the same way astrue
.So I it looks like I can't override its behavior, for example, disabling it to do anything with constants.
The text was updated successfully, but these errors were encountered: