CakePHPでのエラーの履歴

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);
}
としたらなおる