zimmer Posted October 2, 2012 Share Posted October 2, 2012 Hello, I have created a python script which should be regularly executed at 01:00 AM. Unfortunately, the job is executed or finished at 10:00 AM (I get the notification about executing at this time). The python script only downloads a file from an other site and stores it on heliohost. Does it take so much time to download the file or why is there a delay in execution of cron jobs? Kind RegardsJ. Z. Quote Link to comment Share on other sites More sharing options...
Ice IT Support Posted October 2, 2012 Share Posted October 2, 2012 Our servers are set to Pacific Time (-0800). Be sure you are converting the time accordingly. Quote Link to comment Share on other sites More sharing options...
Krydos Posted October 2, 2012 Share Posted October 2, 2012 To find out what time the server thinks it is, and hence what cron jobs it will be running, I think the easiest way is to create a server_time.php file with these contents: <?php echo date("H:i", time()); It will show the hours in 24 hour time too just like the cron jobs use. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.