FastAdmin 在 CRUD 时出现 exec() has been disabled for security reasons 处理方法

然后在看看 禁用函数列表(php.ini)
disable_functions = proc_open, popen, exec, system, shell_exec, passthru

这里要把 exec 去掉

处理完了之后要添加回去,毕竟是禁用函数,谨慎

原文地址:https://www.cnblogs.com/roseY/p/9633046.html