Hi, I’m trying to setup a daily cronjob so I created a class
class DailyCronJob extends BuildTask {
public function run($request) {
$this->SendEmailReminders();
}
public function SendEmailReminders(){
echo 'sending';
}
}
Now when I run it from the command line like php framework/cli-script.php dev/tasks/DailyCronJob it redirects to the login page
How do I set it up without login ( I’m on host gator)
Thanks