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
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
Hope that helps.