我正在为我的网站使用Codeigniter。我必须使用cron作业来运行控制器功能之一。我在网站上使用路线。而且我不在网址中使用index.php。
例如http://my-domain.com/welcome/show,这里Welcome是我的控制器,而show是该控制器的功能名称。
我已经习惯了
0 * * * * php /home/username/public_html/welcome/show
它给出了“没有这样的目录”
如何在CPANEL中为上述网址设置cron jon。
谢谢。
我在cron下面用过
php /full-path-to-cron-file/cron.php /test/index
来源:http : //www.asim.pk/2009/05/14/creating-and-installing- crontabs-using-codeigniter/
这对我有用。
谢谢大家