Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Cron job or php function? (https://thetfp.com/tfp/tilted-technology/59053-cron-job-php-function.html)

j0hnb 06-14-2004 07:08 AM

Cron job or php function?
 
How do you make a site update it's self on a time basis, is it done through cron jobs or is there a php function or something else like that? For example: an online game like starkingdoms or one of those others. How do they have it set so that the players get money or whatnot at a certian time intervul. How do you do this?

Yakk 06-14-2004 08:07 AM

I'd suspect a cron job would be the easiest way.

As in anything, there is more than one way to do it. =)

j0hnb 06-14-2004 08:37 AM

I've never really looked into cron jobs... would you just tell it to open or run a certian page every 30 min or so and that's how it's done???

cthulu23 06-14-2004 10:14 AM

What, exactly, are you trying to do? More detail would be helpful.

It is possible (and easy) to schedule a cron job to hit a certain webpage using wget or curl, but is that really the best way to do it? If you are trying to update something on the server, it would be a better idea to run the job via a mechanism that doesn't require the web server in the middle. If PHP is your favored language, it is possible to run PHP from the command line. Start the script out with the following shebang line:

"#!/usr/bin/php -q"

and then execute it from the command line like any other shell script. You can then schedule that job via cron, if you like. I hope this helped to answer your question.


All times are GMT -8. The time now is 01:10 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73