Tasks » Setting up Recurring Task Activation
Since we don't want to show all occurences of a task at once, we need a way to activate recurring tasks
=$cron->content?>Using CRON on a UNIX/Linux/Mac OS X server you can set up a CRON job to load the activate_tasks.php page once a day to activate task occurences. On windows, I know you can schedule a task to do the same thing - someone tell me how and I'll add it here.
The your-password below is the 'Password for CRON Jobs' in your Server Settings.
Here is the syntax for 2 ways to hit the page at 1am using CRON.
This way should be most compatible:
0 1 * * * wget -q --delete-after http://www.example.com/tasks/activate_tasks.php?password=your-password
Mac OS X users may need to use 'curl' instead of 'wget'.
0 1 * * * curl http://www.example.com/tasks/activate_tasks.php?password=your-password
This way should work fine as long as you have lynx installed:
0 3 * * * lynx -source http://www.example.com/tasks/activate_tasks.php?password=your-password