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」を修正しました。
1 2 3 4 5 |
;date.timezone =  ↓ date.timezone =Australia/Sydney //日本だとこれ //date.timezone =Asia/Tokyo |