CakePHPでのエラー

1pt

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

「CakePHPでのエラー」について友人に書いてもらう。

あなたにとって「CakePHPでのエラー」とは?

ログインするとワンクリックでキーワードを投稿できます

ログインする 新規登録する

他の人の「CakePHPでのエラー」を見る