First of all I apologise for the "double" as I posted something similar on vbulletin.org but I believe this is the place where I should have posted it in the first place.
My scenario is the following and I would kindly appreciated any help you may be able to give me.
I have a product installed with which I can schedule a thread to go online at a specific time of the day, let's say 2am in the morning. My problem is that at that time of the day I have 0 activity on the Forum so the page does not load, the footer cron call is not made and the thread never goes online.
So that's question one

Is it possible for cron jobs to run regardless of the activity?
I can "solve" the above problem by running a scheduled task myself that loads the page every one minute or so but I still have a second problem, that if I have three scheduled tasks to run at let's say 02:00, my job might end up running at 02:03 because if I understood correctly when the call is made, only one cron job is run.
So that's question two

Is it possible for cron jobs to run simultaneously?
Finally, let's say there is no solution for the two above issues and I schedule my schedule task to run every two minutes(I create three tasks from the Schedule Task manager) to be 100% sure that a thread goes online when I want it to.
So my last question is

Would there be a negative performance impact if my php file runs so frequently, every hour?
Thank you.
Comment