-1

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

ビューモジュールの更新と関係があると思います。管理者 >> 人 >> プロファイルで発生します

あなたが私に与えることができる手がかりはありますか?

私は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>";
}
4

1 に答える 1

3

このエラーは、メモリがなくなるとすぐに発生します。これはコードのどこでも発生する可能性があり、エラー メッセージに表示されるスクリプトや行番号に必ずしも属しているとは限りません。

PHP が php.ini でより多くのメモリを必要とするか、またはスクリプトで不必要なメモリ使用量 (多くの場合、メモリ内データベース レコードが大きすぎたり、メモリ内データベース レコードが多すぎたりする) をチェックします。

編集: あなたが投稿したコードは、開発者によって (愚かにも​​) 変更されていません - それはまだ元の drupal コードです。

于 2012-09-07T18:24:02.523 に答える