Last active
February 1, 2023 22:13
-
-
Save gtamborero/d10ab627352337861d38c62bd6251793 to your computer and use it in GitHub Desktop.
WordPress wp-config.php errors for production / debug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Copia y pega estas lineas en tu fichero wp-config.php dentro de la raiz de tu sistema de ficheros WordPress (Producción o Desarrollo) | |
// EN PRODUCCIÓN nos interesa tener siempre los errores y debug desactivados | |
// para evitar daños colaterales en pantalla o en llamadas AJAX / API que pueden romper el funcionamiento | |
@ini_set( 'log_errors', 'Off' ); | |
@ini_set( 'display_errors', 'Off' ); | |
define( 'WP_DEBUG', false ); | |
define( 'WP_DEBUG_LOG', false ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'SCRIPT_DEBUG', false ); | |
// En DESARROLLO nos interesa leer los fallos para poder corregirlos o anticiparnos a problemas | |
@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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment