up vote 3 down vote favorite
share [g+] share [fb]

I have a PHP script that retrieves list of urls from a site and stores them in a MYSQL table. I want to run the script again and again [with some time delay] and update the table. I am using codeigniter framework.

How can I do it?

  • Should I run a cron job?
  • Or should I make a start/stop page with infinte loop?

P.S my webhost is GoDaddy

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

The first option would be a better go:

Should I run a cron job?

Avoid using infinite loops.

link|improve this answer
2  
+1 PHP is not made to act like a daemon, and the host would probably not allow it anyway. – Pekka Mar 5 '10 at 10:50
1  
most host don't support cron or others shell command... if you can leave your pc online 24/7 you can call the script from it using scheduler program... – Marcx Mar 5 '10 at 10:53
@Pekka: yes agreed. – Sarfraz Mar 5 '10 at 11:35
feedback

If your webhost doesn't support cron, there are PLENTY of online services that will call your remote page every 1, 5, 60 minutes etc.

http://www.setcronjob.com/

Is one I've used before. Type in "online cron job" in google and you have your pick of about 20.

edit: The free version of what I linked above is limited to one call per 5 minutes. There may be other free ones that are better.

link|improve this answer
Didn't know this. Thanks :) – Jagira Mar 5 '10 at 10:57
Or I can call the script using another script running on my local computer. – Jagira Mar 5 '10 at 10:58
feedback

A cronjob is the best alternative, but your host might not support it.

link|improve this answer
feedback

Most of the hosting companies have a time limit for scripts to run. So an infinite loop will not work, or will get your account suspended.

cronjobs are the best way to do it. Just set the script to run in a time interval of your choice and make sure that it doesn't take too long finish execution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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