At this moment I have a problem with a Magento installation. This turns out hard to find for me.
The problem:
the system.log file has lots of headers already sent entries.
2016-06-08T10:01:35+00:00 DEBUG (7): File: /data/web/public/lib/Zend/Controller/Response/Abstract.php
2016-06-08T10:01:35+00:00 DEBUG (7): Line: 595
2016-06-08T10:01:35+00:00 DEBUG (7): HEADERS ALREADY SENT: <pre>[0] /data/web/public/app/code/core/Mage/Core/Controller/Response/Http.php:52
[1] /data/web/public/lib/Zend/Controller/Response/Abstract.php:775
[2] /data/web/public/app/code/core/Mage/Core/Controller/Response/Http.php:89
[3] /data/web/public/app/code/core/Mage/Core/Controller/Varien/Front.php:184
[4] /data/web/public/app/code/core/Mage/Core/Model/App.php:354
[5] /data/web/public/app/Mage.php:684
[6] /data/web/public/index.php:96
</pre>
I modified the /lib/Zend/Controller/Response/Abstract.php file to see what file and line is causing the problem and this is where i get stuck. Line 595 is the echo of the function
public function outputBody()
{
$body = implode('', $this->_body);
echo $body;
}
I also modifed a script to output all included files and tested those for blanklines and php closing tags. no succes there either. (I assume a php closing in phtml is not an problem?)
Who can help me with this issue?
thanks.