AD:
Cakephp 1.2.4.8284をインストールしていて、先ほど「Deprecated: Assigning the return value of new by reference is deprecated in」の件は解決できました。
次は、「Warning: strtotime() [http://php.net/function.strtotime]: It is not safe to rely on the system’s timezone settings.」と出るので調べると、timezoneの設定の問題のようです。
なので、「php.ini」の「date.timezone」を修正しました。
|
;date.timezone =  ↓ date.timezone =Australia/Sydney //日本だとこれ //date.timezone =Asia/Tokyo |
Twitter: 0 | Facebook: 0 | Google Plus: 0 | Hatena: 7 | Pocket: 1 | Total: 8 | Feedly: 0
AD:
Cakephpの導入
Windowsの開発環境
Apache2.2
PHP5.3
の環境化で、Cakephpを試していたら下記のエラーがでました。
|
Deprecated: Assigning the return value of new by reference is deprecated in |
下記のURLで調査したところ、PHP5.3の環境だとでるようです。
http://cakephp.jp/modules/newbb/viewtopic.php?topic_id=1993&forum=3
下記のファイルにif文を追加しました。
「cake/libs/configure.php」
|
if (isset($config['debug'])) {  if ($_this->debug) {   error_reporting(E_ALL);   <font color="red">この三行追加</font>   if (error_reporting() > 6143) {    error_reporting(E_ALL & ~E_DEPRECATED);   }   <font color="red">ここまで</font>   if (function_exists('ini_set')) {    ini_set('display_errors', 1);   } |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 12 | Pocket: 1 | Total: 14 | Feedly: 0