http://community.bbgamezone.net/index.php/topic,196.0.htmlAbout session security...
http://community.bbgamezone.net/index.php/topic,358.0.htmlFor CRONS.. make a php script that adds the turns, lets call this script hourly.php
Then upload it into a scripts directory on your server. Make SURE this directory is not web accessible!!!
telnet/ssh to the server.. enter the command
which php
This will tell you where php is located at.. Lets say it gives back /usr/local/bin/php
If it returns nothing then your host won't allow php to run as an executable. Get a new host as this is a pretty standard setting to have and those that don't allow it usually don't have a good tech crew working for them.
Next navigate to your script directory. enter the command
pwd
This will tell you what directory your are in.. Lets say its /home/killergame/scripts
Ok now create a text file called cronjobs in that file put (this is assuming you want to run the php script to add turns every hour)
0 * * * * /usr/local/bin/php -q /home/killergame/scripts/hourly.php
now at the command line enter
crontab cronjobs
Ta DAAAA you now have a your script running every hour! To verify that it will run enter
crontab -l
Hope this helps
That will give you a list of all your cron jobs.. You can also enter
crontab -r
That will remove all your cron jobs
