El Forum
08-28-2012, 03:33 PM
[eluser]bientek[/eluser]
CI 2.1.2 installed.
From the command line, I can run
It works as expected, executing the cron_jobs controller. Yet, when this statement is moved over to cron like so
The line gets executed as if there is no "cron_jobs" controller argument. The default controller's HTML gets emailed by cron, indicating that it was executed instead.
Am I doing it wrong? My cron tasks worked using file_get_contents() in 1.7.2, prior to attempting the new CLI-style way of calling the controller.
Edit: I have already considered http://stackoverflow.com/questions/77984...ntab-entry and tried including different absolute paths to php (/usr/bin/php and also /usr/local/bin/php)
CI 2.1.2 installed.
From the command line, I can run
Code:
php /home/myusername/public_html/mysite/index.php cron_jobs
It works as expected, executing the cron_jobs controller. Yet, when this statement is moved over to cron like so
Code:
*/1 * * * * php /home/myusername/public_html/mysite/index.php cron_jobs
Am I doing it wrong? My cron tasks worked using file_get_contents() in 1.7.2, prior to attempting the new CLI-style way of calling the controller.
Edit: I have already considered http://stackoverflow.com/questions/77984...ntab-entry and tried including different absolute paths to php (/usr/bin/php and also /usr/local/bin/php)