ZPanel cron suhosin.executor.func.blacklist问题

时间:2015-01-04 01:03:19

标签: php apache cron zpanel

我已成功将新的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但没有运气。以前有人面对这个吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

编辑/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文件中硬编码的。