ZaZaKi, a web developer Between Manchester UK & Rotterdam NL. © 2015-2024.

WP Plugin enable debug

See this llink for more documentaion
https://wordpress.org/support/article/debugging-in-wordpress/

insert this code inside wp-config.php  to enable debug reporting


// enable debug
define( 'WP_DEBUG', true );

// log debug info
define( 'WP_DEBUG_LOG', true );

// display debug info
define( 'WP_DEBUG_DISPLAY', false );

// save queries
define( 'SAVEQUERIES', false );

 

See this internal link for enabling the debug mode and redirect the error report to a file.

https://zazakicomputer.com/wordpress-list/wordpress-error-log-redirect-into-specific-file/