Hi all, if I active nodejs watchdog integration module and exec a script that "create" a NOTICE error I receive a FATAL ERROR:
Exception: theme() may not be called until all modules are loaded. in theme() (line 1002 of /FOO/BAR/includes/theme.inc).
A script like this:
define('DRUPAL_ROOT', getcwd());
$_SERVER['REMOTE_ADDR'] = 'localhost';
include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
echo "pippo";
In this case the NOTICE logged is: "Notice: Undefined index: SERVER_SOFTWARE in require_once() (line 13 of /FOO/BAR/includes/mail.inc)."
M.