我尝试运行symfony console命令,但是我遇到了错误:
Notice: Undefined variable: output in /var/www/.../vendor/symfony/symfony/src/Symfony/Component/Console/Helper/DialogHelper.php line 411
我不知道,为什么会出错。
有人可以帮忙吗?
答案 0 :(得分:3)
我已解决了问题:出现此错误是因为exec()
文件中已禁用shell_exec
和php.ini
功能。要启用此功能,您必须编辑此字符串:
disable_functions =exec,passthru,shell_exec,system,proc_open
并删除exec
,shell_exec
:
disable_functions =passthru,system,proc_open