我有一个恼人的标题已经发送错误。
调试它并不容易,我能做的就是改进日志记录,以隔离问题的根源(has described here):
Cannot send headers; headers already sent in lib/Varien/Image/Adapter/Gd2.php, line 133这里是Gd2.php的第133行:
call_user_func($this->_getCallback('output'), $this->_imageHandler);它是方法显示的一部分:
public function display()
{
header("Content-type: ".$this->getMimeType());
call_user_func($this->_getCallback('output'), $this->_imageHandler);
}如何继续?
发布于 2013-09-04 17:17:32
尝尝这个
禁用编译并刷新缓存
https://stackoverflow.com/questions/18608710
复制相似问题