2

使用 laravel 任务调度时,我收到以下错误消息:

[ErrorException] escapeshellarg() has been disabled for security reasons

有什么问题,我该如何解决。另外,我没有访问 php.ini 文件。

这是我的代码:
在内核中:

    protected function schedule(Schedule $schedule)
    {
        $schedule->call(function(){
            echo "SSS";
        })->everyMinute();
    }

directadmin 中的 Cron 作业:

* * * * * php /path/to/artisan schedule:run >> /path/to/test11.txt

和test11.txt内容:

[ErrorException] escapeshellarg() has been disabled for security reasons
4

0 回答 0