Ez Publish 出错
当我想安装 eZ-Teamroom 时出现错误
当我完成 eZ Teamroom 安装时,我只需在我的 eZ 发布根目录中运行此命令
php extension/ezxmlinstaller/bin/php/xmlinstaller.php --template=teamroom/installezteamroom --siteaccess=site
即可出现此错误
警告:strtotime():依赖系统的时区设置是不安全的。 您需要使用 date.timezone 设置或 date_default_timezone _set() 函数。如果您使用了这些方法中的任何一种并且仍然得到 出现此警告时,您很可能拼错了时区标识符。我们选择了' Europe/Paris' 为 '2.0/DST' 而不是 C:\Program Files\EasyPHP-5.3.3\www\eZ\lib \ezutils\classes\ezini.php 第 463 行 初始化脚本时出错:数据库错误:。
i have an error when i want to install eZ-Teamroom
when i finish the eZ Teamroom installation, i simply run this command in my eZ publish root directory
php extension/ezxmlinstaller/bin/php/xmlinstaller.php --template=teamroom/installezteamroom --siteaccess=site
i have this error
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 '
Europe/Paris' for '2.0/DST' instead in C:\Program Files\EasyPHP-5.3.3\www\eZ\lib
\ezutils\classes\ezini.php on line 463
Error initializing script: database error: .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您是否按照错误消息检查了 PHP 时区设置?
如果没有,请尝试以下操作:eZ Publish 安装的根目录中有一个名为“config.php-RECOMMENDED”的文件。在同一位置复制它并将其重命名为“config.php”(如果它尚不存在)。
然后,打开该文件并查找“TIMEZONES”部分(靠近顶部)。该部分末尾有一行,您可以取消注释,并通过它设置时区(通过 date_default_timezone_set PHP 函数)。因此,只需检查您的时区:
http://www.php.net/manual/en/ timezones.php
并将其设置在那里。
So, have you followed the error message and checked your PHP timezone setting?
If not, try the following: there is a file called "config.php-RECOMMENDED" in the root of your eZ Publish installation. Make a copy of it in the same location and rename it to simply "config.php" (if it doesn't exist already).
Then, open that file and seek out the "TIMEZONES" section (near the top). There's a line at the end of the section that you can uncomment, and set your timezone by it (via the date_default_timezone_set PHP function). So just check your timezone from:
http://www.php.net/manual/en/timezones.php
and set it there.