4

joomla および wordpress ファイルを古いサーバーから新しいサーバーに変更しました。フロントエンドと管理側では、エラーなしで動作しています。しかし、データベース (phpmyadmin) セクションでは、次のような警告メッセージが表示されます..

Warning: strtotime() [function.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/Calcutta' for 'IST/5.0/no DST' instead in /usr/share/phpmyadmin/libraries/db_info.inc.php on line 88

Warning: strftime() [function.strftime]: 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/Calcutta' for 'IST/5.0/no DST' instead in /usr/share/phpmyadmin/libraries/common.lib.php on line 1483

これらの警告メッセージを非表示にする方法を教えてください。

前もって感謝します。

4

4 に答える 4

1

error_reportingの使用方法を参照してください。http ://php.net/manual/en/function.error-reporting.php

于 2013-02-20T11:37:40.173 に答える
1
date_default_timezone_set('Europe/London'); 

この PHP コードを試してみると、問題が解決した可能性があります ...

于 2014-01-21T08:34:14.697 に答える