我的/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
On
和E_ALL
似乎不被HHVM理解。如此:
display_startup_errors = 1
error_reporting = 8191
display_errors = 1