cakephp 3 Cron Job不在cpanel工作

时间:2016-07-13 05:58:19

标签: php cron cpanel cakephp-3.x

我正在尝试在cakephp 3 shell脚本中实现cron作业,但它在cpanel中不起作用。

下面是我的cron工作代码blog is my cakephp 3 folder

  

cd /home/mmentert/public_html/abc.com/blog& amp ;& amp; bin / cake你好主要

Cakephp 3 shell类文件

namespace App\Shell;
use Cake\Console\Shell;
use App\Controller\UsersController;
class HelloShell extends Shell {
public function main() {
    $userinfo=new UsersController();
    $data=$userinfo->useremail();
    $this->out($data);
  }
}

1 个答案:

答案 0 :(得分:2)

我假设您正在使用共享主机,CakePHP 3 Docs上建议的语法不适用于共享主机,这对我有用

php -q -d register_argc_argv=on /home/public_html/bin/cake.php app main

请使用您自己的cake.php文件路径

  • -q --no-header Quiet-mode。抑制HTTP标头输出(仅限CGI)。
  • -d --define为php.ini
  • 中允许的任何配置指令设置自定义值

希望有所帮助。