vote up 1 vote down star

Title sums it up, I know little about how I will do this.


See also:

http://stackoverflow.com/questions/120228/php-running-scheduled-jobs-cron-jobs

flag

3 Answers

vote up 2 vote down

The easiest way I know is a simple cron job.

http://man.cx/cron

link|flag
vote up 0 vote down

**PHPCron: Running scheduled tasks from PHP on a web server**

But PHPCron is temporarily not available from there. You might need to look somewhere else

link|flag
vote up 1 vote down

Use your operating system's scheduled tasks facility. crontab on unix, scheduled tasks on windows.

Then we have some more considerations:

  1. Do you want to schedule tasks through a PHP script that adds stuff to the main OS way to schedule tasks? or
  2. Do you want to have a long running php process that will run things at determined times?

For 1, on Unix, you can use something like this module that will do.

For 2, you can use something like this other module.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.