ZPanel cron suhosin.executor.func.blacklist 问题

ZPanel cron suhosin.executor.func.blacklist issue

我已成功将新的 cron 作业添加到 ZPanel:

abc_com/app/cronaction.php

而且我发现它正在 /var/log/cron 运行:

php -d suhosin.executor.func.blacklist="passthru, show_source, shell_exec, system, pcntl_exec, popen, pclose, proc_open, proc_nice, proc_terminate, proc_get_status, proc_close, leak, apache_child_terminate, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, escapeshellcmd, escapeshellarg, exec" -d open_basedir="/var/zpanel/hostdata/zadmin/:/var/zpanel/temp/" /var/zpanel/hostdata/zadmin/public_html/abc_com/app/cronaction.php

我的问题是 cronaction.php 需要使用 'exec',那么我在哪里可以更改 suhosin.executor.func.blacklist 以删除 'exec'?我试图改变 /etc/zpanel/configs/apache/httpd-vhosts.conf 但没有运气。有人遇到过这个吗?

谢谢!

编辑/etc/zpanel/panel/modules/cron/code/controller.ext.php

并寻找:-

php -d suhosin.executor.func.blacklist="passthru, show_source, shell_exec, system, pcntl_exec, popen, pclose, proc_open, proc_nice, proc_terminate, proc_get_status, proc_close, leak, apache_child_terminate, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, escapeshellcmd, escapeshellarg, exec" -d

从代码中删除 exec。它实际上是硬编码在 php 文件中。