cakephp 3 Cron Job not working in cpanel

我怕爱的太早我们不能终老 提交于 2019-11-29 14:57:34

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!