cakephp 3 Cron Job not working in cpanel

前端 未结 1 1518
耶瑟儿~
耶瑟儿~ 2020-12-21 07:41

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

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

相关标签:
1条回答
  • 2020-12-21 08:08

    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
    

    Please use your own path for cake.php file

    • -q --no-header Quiet-mode. Suppress HTTP header output (CGI only).
    • -d --define Set a custom value for any of the configuration directives allowed in php.ini

    Hope that helps.

    0 讨论(0)
提交回复
热议问题