Well,
I have 3 different php scripts and actually it is running by a cron job, but also I have 3 entries in my cron file, and I would like to have only one. I will try to explain:
1 - File run a query in my data base and save some data in the database. (It takes few seconds) 2 - Run script number 2, this will create 2 new files of configuration inside my web server. (It takes more than 1 minute to execute) 3 - The third file open a ssh connection and exec some commands in the server, it will put the files generated is step 2 into the server and reload the server.
The actual situation:
I execute the 3 scripts each time, all the 3 scripts need to run every 30 minutes, then I run the first one, after 5 minutes I run the second one and finally after 15 minutes I had run the script 2 I run the script 3.
It works perfect, but I would like to do every thing inside a single php script, is that possible and give only one call in my cron?
include("1.php"); include("2.php"); include("3.php");? – Pekka 웃 Apr 19 '11 at 20:06sleep()for that amount of time. But if you have no pressing reason to do this, I would keep things as they are. – Pekka 웃 Apr 19 '11 at 20:12