Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() (line 933 of /iincludes/bootstrap.inc)

if ($filename) {
  include_once DRUPAL_ROOT . '/' . $filename;
  $files[$type][$name] = TRUE;

  return TRUE;
}

to

if ($filename) {
  @include_once DRUPAL_ROOT . '/' . $filename;
  $files[$type][$name] = TRUE;

  return TRUE;
}

Comments

damien tournoud’s picture

Status: Active » Postponed (maintainer needs more info)

This is a parser notice, it means that the file being loaded at this time contains some those deprecated call-time pass-by-reference. Identify which file it is, and file a bug to the incriminated module.

Xaber’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)
Henning’s picture

Try with adding the following setting in .htaccess:
php_flag allow_call_time_pass_reference on

Xaber’s picture

Thanks, I'll try it, if the problem persists.

thirstysix’s picture

How to find out which modue file have Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() ?..
plz help me.. i tried it all method .. i can't solve this issue..

how will i find out that error (specific line) in my module..
thanks in advance

clemens.tolboom’s picture

@satheeshkumarr

XRef and see #1071854: Deprecated function