西小倉事典
mindia西小倉事典見出し語

CakePHPでのエラー

西小倉パンデイロ · 2010-04-27 更新 · 1 ポイント

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

関連する見出し語