taking down the system |
I haven't played with setting variables in _SERVER global in this manner nor have I seen it in the wild.
You could go with a lock file solution to track when the cron starts and ends for your other files Along the lines of PHP Code: file_put_contents('cron.lock', time()); In your index, you can do PHP Code: if(file_exists('cron.lock')) |
Messages In This Thread |
taking down the system - by richb201 - 08-25-2018, 07:32 PM
RE: taking down the system - by ragingTorch - 08-25-2018, 08:14 PM
RE: taking down the system - by richb201 - 08-26-2018, 06:06 AM
RE: taking down the system - by ragingTorch - 08-26-2018, 07:02 AM
RE: taking down the system - by richb201 - 08-26-2018, 08:30 AM
|