Drupal 6: Mostrar los errores de PHP en lugar de la pantalla blanca (o blank page)
Suele hacer falta poder ver los errores de PHP en Drupal de vez en cuando.
Abrí el archivo index.php de Drupal y poné lo siguiente justo por encima de “require_once ‘./includes/bootstrap.inc’;“:
1 2 3 4 5 6 |
<?php //Reportar errores PHP error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE); //Fin reportar errores PHP |
Drupal 6 mostrar los errores de php en lugar de la pantalla blanca o blank page.. Super 🙂
Pingback: costo sito internet
En drupal 7 sería esto ?
error_reporting(7);
require_once DRUPAL_ROOT . ‘/includes/bootstrap.inc’;
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
menu_execute_active_handler();
Saludos