*

cakephpでPHPのタイムゾーン設定してないとエラーが出る件

公開日: : 最終更新日:2018/12/18 WEBサービス, テクニック, 体験談

cakephp

ロリポップからさくらにサーバを変えたのは先日のエントリーの通りですが、サーバ環境が違うことでcakephpにエラーが起きてまして。

Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for 'JST/9.0/no DST' instead in /var/www/html/blog/lib/Cake/Cache/CacheEngine.php on line 59 Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for 'JST/9.0/no DST' instead in /var/www/html/blog/lib/Cake/Cache/CacheEngine.php on line 59

調べてみると「PHPのデフォルトのタイムゾーンが指定されていない」ということでした。

で、解決方法としては

  1. php.ini を修正
  2. cakephpファイルを修正

があるようです。

1.のphp.iniを修正する場合は

[Date]
date.timezone = "Asia/Tokyo"

を追加します。

2.のcakephp側で修正する場合は

\lib\Cake\Cache\CacheEngine.php の59行目に

date_default_timezone_set('Asia/Tokyo');

を追加します。

そうするとWarningが消えてますね。

 

参考URL
http://labs.web-mix.jp/php/datetime/
http://cashew.hatenablog.com/entry/2013/02/09/Mac%E3%81%AE%E3%83%AD%E3%83%BC%E3%82%AB%E3%83%AB%E9%96%8B%E7%99%BA%E7%92%B0%E5%A2%83%E3%81%ABCakePHP2.3.0%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%97%E3%81%9F%E6%99%82

Google AD


関連記事

docomo-iphone買わなかった

docomo-iphoneが発売されましたが、結局 購入には至りませんでした。 その理

記事を読む

andoさん写真

「オープンソースカンファレンス2012」でcandycaneのセミナー聞いてきた

 オープンソースカンファレンス2012に行ってきました。 オープンソースカンファレンス20

記事を読む

no image

postgresqlのvacuumでビビった件

ある日突然、サービスが落ちていると連絡を受けました。 URLにアクセスしてみると、確かにサ

記事を読む

composerでcakephpをインストールしてプロジェクトを始めてみる

こんにちは!今日も寒いです。 この時期になると気になってくるのが花粉症です。 自分は花粉

記事を読む

no image

WEBディレクター、WEBエンジニア募集してます。

いっしょにWEB制作やりましょう! クライアント駐在(派遣) 場所:都営大江戸線

記事を読む

no image

zenphotoを考え始める

googleのwebアルバムを使っていて、こりゃ便利じゃわい、と思ってたけど、結局完全に無料じゃない

記事を読む

no image

wordpress plugin change the taxonomy when you suggest the time

1. at first, download Post Expirator.2.change code

記事を読む

IIJmioに申し込んでモバイルバッテリー当たったった

(写真はイメージです) 4月28日のエントリーで、スマホの回線・データ通信をIIJmi

記事を読む

WordPressのテーマを「stinger」に変えたよ

しばらくぶりにブログ(Wordpress)のテーマを変更しました。 以前はオールホワイトで

記事を読む

【感想】ネットで注文した電動アシスト自転車が届いたので早速試し乗りしてみたよ!

2週間ほど前のポストで電動アシスト自転車を購入したとエントリーしましたが、ついにその自転車が納車

記事を読む

Google AD

Google AD

PAGE TOP ↑