2015-09-07 70 views
2

我在CI中使用cron作業,而不是重定向到cron控制器(schedular)cron作業重定向到默認控制器(內容)。以下是代碼:codeigniter cron作業沒有路由到指定的控制器

routes.php 
$route['schedular'] = "schedular/index/$1"; 
$route['(:any)'] = "content/index/$1"; 

cpanel cron code 
/opt/php54/bin/php /home/server_name/public_html/demo/cron.php schedular index 

我在做什麼錯?歡迎任何幫助/建議。提前致謝。

+1

嘗試從cron命令中刪除'index' – Viral

回答

0

嘗試點要直接運行,而不是從任何地方比

1

呀,解決了這個問題通過@Viral的建議重定向控制器上的的cron任務,它的功能。以下是cron命令。

/opt/php54/bin/php /home/server_name/public_html/demo/index.php schedular