I am trying to add link of codeigniter in cron jobs, but it is not working..i don't know why..:(
i am using this one:
php -q /home2/abisysco/asuccessclub/main/getFreeC
I am trying to add link of codeigniter in cron jobs, but it is not working..i don't know why..:(
i am using this one:
php -q /home2/abisysco/asuccessclub/main/getFreeC
CodeIgniter use a complex URL rewriting method, so run the php file directly is not a good idea. Try this:
Create a controller to do your cron job:
<?php
class MyCronJob extends CI_Controller {
public function dojob()
{
// Put your business here
}
}
?>
And then set your cron job like this:
wget –quiet http://domain.com/MyCronJob/dojob