¿Cómo ocultar errores PHP WordPress?

  

5
Inicio del tema

Hola, tengo un sitio WordPress y como es antiguo (¡muy antiguo!) ¿cómo puedo ocultar los errores PHP?

Por ejemplo, estos son algunos de los errores:

  • Los submenús no se muestran debido a alguna clase Walker.
  • ¡Los estilos han desaparecido! En lugar de mostrar Areal como fuente se muestra Times New Roman.

Aquí están los errores que estoy recibiendo (por cierto - no puedo entrar en el panel de control de administración a causa de ellos):

Warning: Declaration of New_Walker_Category::start_el(&$output, $category, $depth, $args) should be compatible with Walker_Category::start_el(&$output, $category, $depth = 0, $args = Array, $id = 0) in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/theme-functions.php on line 119
Warning: Declaration of DropDown_Nav_Menu::start_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = NULL) in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/plugins/dropdown-menus.php on line 119
Warning: Declaration of DropDown_Nav_Menu::end_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::end_lvl(&$output, $depth = 0, $args = NULL) in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/plugins/dropdown-menus.php on line 130
Warning: Declaration of DropDown_Nav_Menu::start_el(&$output, $item, $depth, $args) should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = NULL, $id = 0) in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/plugins/dropdown-menus.php on line 144
Warning: Declaration of DropDown_Nav_Menu::end_el(&$output, $item, $depth) should be compatible with Walker_Nav_Menu::end_el(&$output, $item, $depth = 0, $args = NULL) in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/plugins/dropdown-menus.php on line 181
Warning: Declaration of TGM_Bulk_Installer_Skin::before() should be compatible with Bulk_Upgrader_Skin::before($title = '') in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/class-tgm-plugin-activation.php on line 1977
Warning: Declaration of TGM_Bulk_Installer_Skin::after() should be compatible with Bulk_Upgrader_Skin::after($title = '') in /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/class-tgm-plugin-activation.php on line 1999
Warning: Cannot modify header information - headers already sent by (output started at /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/theme-functions.php:0) in /home/vipozico/old.mychinesenow.com/wp-content/plugins/seo-cleaner/includes/class-seo-cleaner.php on line 244
Warning: Cannot modify header information - headers already sent by (output started at /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/theme-functions.php:0) in /home/vipozico/old.mychinesenow.com/wp-includes/pluggable.php on line 1329
Warning: Cannot modify header information - headers already sent by (output started at /home/vipozico/old.mychinesenow.com/wp-content/themes/nollie/functions/theme-functions.php:0) in /home/vipozico/old.mychinesenow.com/wp-includes/pluggable.php on line 1332

Sé que en el wp-config.php en la raíz del sitio hay una línea de código:

define('WP_DEBUG', false);

¿pero cómo puedo editarlo?

Gracias.

3 respuestas
4

Para ocultar totalmente los errores PHP en wp-config.php debe reemplazar:

define('WP_DEBUG', false);

con:

ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
3

También puedes depurar los errores de tu sistema WordPress;

Para ello, puede añadir estas líneas de código en wp-config.php:

Sustituir:

define('WP_DEBUG', false);

CON (también puedes leer los comentarios en el código):

define('WP_DEBUG', true);
//Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
//false == Showing errors ONLY in /wp-content/debug.log file NOT in the site
define('WP_DEBUG_DISPLAY', true);
2

Puedes ver este útil vídeo sobre la depuración de sitios WordPress:

O puedes usar algunos plugins de depuración de WP.

Saludos

Compartir: