0

迷惑な HEADER ALREADY SENT エラーがあります。

それをデバッグするのは簡単ではありません。私ができることは、ロギングを改善して問題の原因を特定することでした(ここで説明しています):

Cannot send headers; headers already sent in lib/Varien/Image/Adapter/Gd2.php, line 133

ここで の 133 行目Gd2.php:

call_user_func($this->_getCallback('output'), $this->_imageHandler);

そして、それはメソッド表示の一部です:

public function display()
    {
        header("Content-type: ".$this->getMimeType());
        call_user_func($this->_getCallback('output'), $this->_imageHandler);
    }

どのように行くのですか?

4

1 に答える 1