CakePHPでのエラーの履歴
Cannot modify header information – headers already sent by…
php.iniの
output_buffering = Off
をOnにしてApache再起動する
Deprecated: Assigning the return value of new by reference is deprecated
PHP5.3だと出るらしい
cake/libs/configure.php
の
if (isset($config['debug'])) {
if ($_this->debug) {
error_reporting(E_ALL);
if (function_exists('ini_set')) {
ini_set('display_errors', 1);
}
を
if (isset($config['debug'])) {
if ($_this->debug) {
error_reporting(E_ALL);
if (error_reporting() > 6143) {
error_reporting(E_ALL & ~E_DEPRECATED);
}
if (function_exists('ini_set')) {
ini_set('display_errors', 1);
}
としたらなおる