cakephp 3 Cron作业无法在cpanel中使用 [英] cakephp 3 Cron Job not working in cpanel

查看:61
本文介绍了cakephp 3 Cron作业无法在cpanel中使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I am trying to implement cron job in cakephp 3 shell script but it is not working in cpanel.

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

below is my cron job code blog is my cakephp 3 folder

cd/home/mmentert/public_html/abc.com/blog&& bin/cake hello main

cd /home/mmentert/public_html/abc.com/blog && bin/cake hello main

Cakephp 3 shell类文件

Cakephp 3 shell class file

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);
  }
}

推荐答案

我假设您使用的是共享托管,CakePHP 3 Docs上建议的语法不适用于共享托管,这对我来说是有效的

I assume you are using shared hosting, the syntax suggested on CakePHP 3 Docs does not work for shared hosting, this is what worked for me

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

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

Please use your own path for cake.php file

  • -q --no-header安静模式.禁止HTTP标头输出(仅CGI).
  • -d --define为php.ini中允许的任何配置指令设置自定义值

希望有帮助.

这篇关于cakephp 3 Cron作业无法在cpanel中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆