万网X3主机date() [function.date]错误

今日杂记从Godaddy的Windows主机迁移到万网X3后速度是快了,但是网站还有一些小问题没有解决,比如WordPress Database Backup插件的数据库自动备份,还有评论邮件通知,也不知道万网X3的Linux主机支持不支持mail()函数,前面两个功能反正我目前还没有实现。用代码实现SMTP发邮件,用WordPress Database Backup备份数据库会提示“date() [function.date]”错误,具体错误代码如下:

The following errors were reported: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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/Chongqing' for 'CST/8.0/no DST' instead

网上搜索解决办法,有三种方式,由于万网X3主机不支持编辑php.ini,只能用在页首添加代码的方法。我在WordPress Database Backup插件里添加以下代码解决这个错误。

ini_set('date.timezone','Asia/Chongqing');

注意代码添加在<?php后?>之前。

我猜~这些文章你可能也感兴趣

Nie

相关文章

*


Top