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

5

您真的只是想隐藏错误消息还是想解决问题,他们正在指示?

在您的新服务器上,您应该会date.timezonephp.ini文件中找到已注释掉的设置。在这里,您必须指定您的服务器所在的时区。例如,我的服务器位于德国,所以我Europe/Berlin在这里使用:

date.timezone = Europe/Berlin

您可以在此处找到支持的时区的完整列表:

http://www.php.net/manual/en/timezones.php

更改此设置后,重新启动您的 Web 服务器,警告应该会消失。

于 2013-02-20T15:41:00.160 回答
1
date_default_timezone_set('Europe/London'); 

试试这个PHP代码可能是你的问题已经解决...

于 2014-01-21T08:34:14.697 回答
1

查看如何使用error_reporting,http ://php.net/manual/en/function.error-reporting.php

于 2013-02-20T11:37:40.173 回答
1

最好的方法是设置默认时区。在 config.inc.php 文件中,插入一行:

date_default_timezone_set('America/Sao_Paulo');

在我的情况下,我使用“America/Sao_Paulo”在你的情况下我认为是“Asia/Calcutta”

有关时区的更多详细信息,请访问http://php.net/manual/en/function.date-default-timezone-set.php

于 2013-11-04T15:50:39.197 回答