无法看到HHVM重启失败的原因

  • 本文关键字:失败 重启 HHVM php hhvm
  • 更新时间 :
  • 英文 :


我的/etc/hhvm/php.ini现在看起来是这样的:

display_startup_errors = On
error_reporting = E_ALL
display_errors = On
hhvm.error_handling.call_user_handler_on_fatals = 1
hhvm.server.implicit_flush = 1

前3个指令导致sudo service hhvm restart失败。如果我删除这3个指令,它会重新启动。当服务重启失败时,我没有看到/var/log/hhvm/error.log内部失败的任何原因。

我在看正确的日志文件吗?php.ini配置不应该放在这个文件中吗?

我添加这些ini指令的原因是在我的php应用程序中看到致命的错误输出。你能提供的任何建议都会很有帮助。
$ hhvm --version
HipHop VM 3.6.5 (rel)
Compiler: tags/HHVM-3.6.5-0-g20a30678cd67fad96602ffd93e69780d001ce57f
Repo schema: 53a4026d3732c3584cffef19fa47fea655be3c4f

OnE_ALL似乎不被HHVM理解。如此:

display_startup_errors = 1
error_reporting = 8191
display_errors = 1

相关内容

  • 没有找到相关文章

最新更新