PhpDig.net

PhpDig.net (http://www.phpdig.net/forum/index.php)
-   Coding & Tutorials (http://www.phpdig.net/forum/forumdisplay.php?f=31)
-   -   alternative to Cron (http://www.phpdig.net/forum/showthread.php?t=2184)

rkphpdev 10-04-2005 06:29 PM

alternative to Cron
 
I am using a hosting service and they donot support cron.

I need guidances on alternatives to make my php scripts work on the same way they would have worked in cron.

Would appreciate help

Thanks - rk

Charter 10-05-2005 06:23 AM

Not quite the same way, but you could use an IMG tag that runs the cron:
Code:

<img src="cron.php" width="1" height="1" border="0">
The cron.php file should contain something like the following:
Code:

header("Location: http://www.domain.com/images/dot.gif");
do_my_cron();

Where the do_my_cron function contains the PHP code you'd like to run.

If you use this method, then anytime some hits a page containing your IMG tag, your cron job is run.


All times are GMT -8. The time now is 07:31 AM.

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.