How to setup cronjobs in cake php?

后端 未结 4 581
挽巷
挽巷 2020-11-29 11:37

How can I use cron job in cakephp to call an action of a controller on Ubuntu, I am trying to do it through crontab but it is not working?

4条回答
  •  悲哀的现实
    2020-11-29 11:46

    Since we dont need the View layer of MVC, i will also suggest to use Cake shell instead of writing it in normal controllers. This will also reduce the memory load of various callback functions of controllers like beforeFilter, beforeRender et al.

    Then make an entry in **nix cron tab for crons written in your CakeShells.

提交回复
热议问题