S 5e4401abd24a1ec9acd4159946f33876 CakePHPでのエラー

Cannot modify header information – headers already sent by…

php.iniの
output_buffering = Off
をOnにしてApache再起動する

cakePHP | redirect関数を使用するとWarningが発生してしまう。

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

Deprecated: Assigning the return value of new by reference is deprecated in

もしかして

    他の人の「CakePHPでのエラー」

    S 5e4401abd24a1ec9acd4159946f33876

    関西大学総合情報学部2007年卒。 卒業後「非同期」「主観事典」をテーマにした会社設立。パンデイロやvimなどの打楽器が好き。 Backbone.js 千利休 木村蒹葭堂

    (9773words)

    最新

      最新エントリ

        関連ツイート