Salve, ho un sito WordPress e poiché è vecchio (molto vecchio!) come posso nascondere gli errori PHP?
Ad esempio, ecco alcuni degli errori:
- I sottomenu non vengono visualizzati a causa di una classe Walker.
- Gli stili sono spariti! Invece di mostrare Areal come font, viene visualizzato Times New Roman.
Ecco gli errori che ricevo (tra l'altro non riesco a entrare nella dashboard di amministrazione a causa di questi errori):
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
So che nel wp-config.php nella root del sito c'è una riga di codice:
define('WP_DEBUG', false);
ma come posso modificarlo?
Grazie!
Per nascondere completamente gli errori PHP in wp-config.php è necessario sostituirlo:
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);
È inoltre possibile eseguire il debug degli errori nel sistema WordPress;
A questo scopo, è possibile aggiungere queste righe di codice in wp-config.php:
Sostituire:
define('WP_DEBUG', false);
CON (potete anche leggere i commenti nel codice):
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);
È possibile guardare questo utile video sul debug dei siti WordPress:
Oppure si possono usare alcuni plugin di WP per il debug.
Salute