Magento Debug HEADERS ALREADY SENT error

前端 未结 11 660
盖世英雄少女心
盖世英雄少女心 2020-12-02 23:56

I am receiving the following error in my system.log file:

 2011-01-12T14:16:52+00:00 DEBUG (7): HEADERS ALREADY SENT: 
 [0] C:\\xampp\\htdocs\\www.mysite.com         


        
11条回答
  •  鱼传尺愫
    2020-12-03 00:58

    The most common place you run into this in Magento is when you output content directly from the controller.

    Instead of doing

    echo $string; 
    

    within a controller, do this:

    $this->getResponse()->setBody($string);
    

提交回复
热议问题