Wordpress Log Errors

[Solved] Wordpress Log Errors | Php - Code Explorer | yomemimo.com
Question : wordpress error log

Answered by : elated-elephant-dsfrbf32z4kd

// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( 'SCRIPT_DEBUG', true );

Source : https://wordpress.org/support/article/debugging-in-wordpress/ | Last Update : Fri, 03 Apr 20

Question : error_log wordpress

Answered by : adventurous-alligator-inpliidfbzvn

error_log( print_r( 'Hello World!', true ) );

Source : https://stackoverflow.com/questions/24330039/how-can-i-use-error-log-with-wordpress | Last Update : Sat, 01 Aug 20

Question : wordpress log errors

Answered by : gtamborero

// inside wp-config.php
@ini_set( 'log_errors', 'On' );
@ini_set( 'display_errors', 'On' );
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
define('SAVEQUERIES', true);

Source : | Last Update : Tue, 05 Oct 21

Question : error_log wordpress

Answered by : adventurous-alligator-inpliidfbzvn

error_log( 'Hello World!' );

Source : https://stackoverflow.com/questions/24330039/how-can-i-use-error-log-with-wordpress | Last Update : Sat, 01 Aug 20

Answers related to wordpress log errors

Code Explorer Popular Question For Php