Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering because I can code in PHP without minors hitches or errors but one thing I have never understood about PHP is the fact it is a server side scripting language, so it needs something to trigger it, if this is so how can I create a PHP file which runs routine checks? and example is:

Someone has not activated there account although they have had a email sent out to them and it has been the time period given, were and how would the script run, would it need to be required into a page or is there a function for this.

Thanks in advance, I just need this clearing up a little it if's not too much trouble.

share|improve this question

2 Answers

up vote 3 down vote accepted

For this you would usually set up a cron job.

cron is a daemon that periodically starts other programs, for tasks such as the one you outline. You can make cron start php scripts, as well.

If you're on shared hosting, there's probably an option somewhere in your control panel to set up a periodic cron job.

Otherwise, here are some guides on doing it manually:

share|improve this answer
Awesome, thanks so much :) – Aiden Ryan Jul 9 '11 at 13:10

If you are on a Unix/Linux system, you can write a php script that can be executed from command-line and add it as a cron job.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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