PHP/Warning(2) strtotime...It is not safe to rely on the system's...対処方法
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#navi(../)
* PHPでstrtotimeでWarning (2): strtotime() ... が発生した...
cakephp1.3.15をCentOS6にインストールして、初めてブラウザ...
本資料は下記の警告の対処方法を記します。
#contents
#htmlinsertpcsp(web-top.html,web-sp.html)
Warning (2): strtotime() [http://php.net/function.strtot...
You are *required* to use the date.timezone setting or t...
In case you used any of those methods and you are still ...
We selected 'Asia/Tokyo' for 'JST/9.0/no DST' instead [C...
Code | Context
strtotime - [internal], line ??
CacheEngine::init() - CORE/cake/libs/cache.php, line 597
FileEngine::init() - CORE/cake/libs/cache/file.php, line...
Cache::_buildEngine() - CORE/cake/libs/cache.php, line 166
Cache::config() - CORE/cake/libs/cache.php, line 141
Configure::__loadBootstrap() - CORE/cake/libs/configure....
Configure::getInstance() - CORE/cake/libs/configure.php,...
include - CORE/cake/bootstrap.php, line 38
[main] - APP/webroot/index.php, line 79
Notice: Trying to get property of non-object in /var/www...
Fatal error: Call to a member function cd() on a non-obj...
* 使用した環境 [#q095619f]
- PHP~
PHP 5.3.3 (yumコマンドでPHPパッケージをインストールしまし...
- OS~
CentOS 6
* strtotimeのWarning対処方法 [#w71c8b29]
date_default_timezone_set関数でタイムゾーンを設定すればよ...
date.timezone = Asia/Tokyo
タイムゾーン周りの参考資料は以下のリンクを参照してくださ...
-[[PHP実行時設定 Date/Time Configuration Options>http://j...
** php.iniの編集 [#lbf9ed23]
/etc/php.iniファイル内を確認すると、date.timezoneがコメン...
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[Date]
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.ph...
;date.timezone =
<省略>
上記の ;date.timezone = を以下のように変更し保存しました。
[Date]
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.ph...
date.timezone = Asia/Tokyo
<省略>
** httpd(Apache)の再起動 [#d9e73bee]
php.iniの編集が完了したらhttpd(Apache)を再起動します。~
今回使用したOSはCentOSなので、rootユーザーにて以下のコマ...
[root@centos6 ~]# service httpd restart
httpd を停止中: ...
httpd を起動中: ...
以上の操作により、strtotime関数がWARNINGにならず動作する...
#htmlinsertpcsp(web-btm.html,web-sp.html)
終了行:
#navi(../)
* PHPでstrtotimeでWarning (2): strtotime() ... が発生した...
cakephp1.3.15をCentOS6にインストールして、初めてブラウザ...
本資料は下記の警告の対処方法を記します。
#contents
#htmlinsertpcsp(web-top.html,web-sp.html)
Warning (2): strtotime() [http://php.net/function.strtot...
You are *required* to use the date.timezone setting or t...
In case you used any of those methods and you are still ...
We selected 'Asia/Tokyo' for 'JST/9.0/no DST' instead [C...
Code | Context
strtotime - [internal], line ??
CacheEngine::init() - CORE/cake/libs/cache.php, line 597
FileEngine::init() - CORE/cake/libs/cache/file.php, line...
Cache::_buildEngine() - CORE/cake/libs/cache.php, line 166
Cache::config() - CORE/cake/libs/cache.php, line 141
Configure::__loadBootstrap() - CORE/cake/libs/configure....
Configure::getInstance() - CORE/cake/libs/configure.php,...
include - CORE/cake/bootstrap.php, line 38
[main] - APP/webroot/index.php, line 79
Notice: Trying to get property of non-object in /var/www...
Fatal error: Call to a member function cd() on a non-obj...
* 使用した環境 [#q095619f]
- PHP~
PHP 5.3.3 (yumコマンドでPHPパッケージをインストールしまし...
- OS~
CentOS 6
* strtotimeのWarning対処方法 [#w71c8b29]
date_default_timezone_set関数でタイムゾーンを設定すればよ...
date.timezone = Asia/Tokyo
タイムゾーン周りの参考資料は以下のリンクを参照してくださ...
-[[PHP実行時設定 Date/Time Configuration Options>http://j...
** php.iniの編集 [#lbf9ed23]
/etc/php.iniファイル内を確認すると、date.timezoneがコメン...
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[Date]
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.ph...
;date.timezone =
<省略>
上記の ;date.timezone = を以下のように変更し保存しました。
[Date]
; Defines the default timezone used by the date functions
; http://www.php.net/manual/en/datetime.configuration.ph...
date.timezone = Asia/Tokyo
<省略>
** httpd(Apache)の再起動 [#d9e73bee]
php.iniの編集が完了したらhttpd(Apache)を再起動します。~
今回使用したOSはCentOSなので、rootユーザーにて以下のコマ...
[root@centos6 ~]# service httpd restart
httpd を停止中: ...
httpd を起動中: ...
以上の操作により、strtotime関数がWARNINGにならず動作する...
#htmlinsertpcsp(web-btm.html,web-sp.html)
ページ名: