wp-config debug ‘false’ or ‘true’
You’re defining WP_DEBUG_LOG twice, first as false and then as true. Doing some very rudimentary testing on my local PHP installation… php > define( ‘X’, true ); php > define( ‘X’, false ); PHP Warning: Constant X already defined in php shell code on line 1 php > print_r( X ); 1 …it seems clear … Read more