Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 06-14-2004, 07:08 AM   #1 (permalink)
Crazy
 
Location: Arnold, MD
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?
j0hnb is offline  
Old 06-14-2004, 08:07 AM   #2 (permalink)
Wehret Den Anfängen!
 
Location: Ontario, Canada
I'd suspect a cron job would be the easiest way.

As in anything, there is more than one way to do it. =)
__________________
Last edited by JHVH : 10-29-4004 BC at 09:00 PM. Reason: Time for a rest.
Yakk is offline  
Old 06-14-2004, 08:37 AM   #3 (permalink)
Crazy
 
Location: Arnold, MD
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???
j0hnb is offline  
Old 06-14-2004, 10:14 AM   #4 (permalink)
Banned
 
cthulu23's Avatar
 
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.
cthulu23 is offline  
 

Tags
cron, function, job, php


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 05:37 PM.

Tilted Forum Project

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