致命错误:允许的内存大小为134217728字节耗尽 - Drupal

时间:2012-09-07 18:05:19

标签: php arrays drupal

在做了Drupal更新后,我收到了这个错误 - 我相信以前的开发人员(愚蠢地)编辑过核心:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 74 bytes) in /home/readyby2/public_html/includes/common.inc on line 1408

我认为它与更新视图模块有关。它发生在Admin>>人>>配置文件

你们都可以给我任何线索吗?

我正在检查我的common.inc,这是1408行和周围的行:

function _filter_xss_split($m, $store = FALSE) {
  static $allowed_html;

  if ($store) {
    $allowed_html = array_flip($m);
    return;
  }

违规行似乎是$allowed_html = array_flip($m);

这是完整的功能:

function _filter_xss_split($m, $store = FALSE) {
  static $allowed_html;

  if ($store) {
    $allowed_html = array_flip($m);
    return;
  }

  $string = $m[1];

  if (substr($string, 0, 1) != '<') {
    // We matched a lone ">" character.
    return '&gt;';
  }
  elseif (strlen($string) == 1) {
    // We matched a lone "<" character.
    return '&lt;';
  }

  if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?|(<!--.*?-->)$%', $string, $matches)) {
    // Seriously malformed.
    return '';
  }

  $slash = trim($matches[1]);
  $elem = &$matches[2];
  $attrlist = &$matches[3];
  $comment = &$matches[4];

  if ($comment) {
    $elem = '!--';
  }

  if (!isset($allowed_html[strtolower($elem)])) {
    // Disallowed HTML element.
    return '';
  }

  if ($comment) {
    return $comment;
  }

  if ($slash != '') {
    return "</$elem>";
  }

  // Is there a closing XHTML slash at the end of the attributes?
  $attrlist = preg_replace('%(\s?)/\s*$%', '\1', $attrlist, -1, $count);
  $xhtml_slash = $count ? ' /' : '';

  // Clean up attributes.
  $attr2 = implode(' ', _filter_xss_attributes($attrlist));
  $attr2 = preg_replace('/[<>]/', '', $attr2);
  $attr2 = strlen($attr2) ? ' ' . $attr2 : '';

  return "<$elem$attr2$xhtml_slash>";
}

1 个答案:

答案 0 :(得分:3)

一旦内存结束就会发生此错误 - 这可能发生在您的代码中的任何位置,并且不一定属于您在错误消息中显示的脚本和行号。

你的php在php.ini中需要更多内存,或者检查你的脚本是否有不必要的内存使用(通常是大型或内存数据库记录)。

编辑:你发布的代码没有(愚蠢地)由开发人员改变 - 它仍然是原始的drupal代码。