QuackieMackie
Active member
I've finally started adding offsite backups for my backup solution, and I ran into a Cloudflare issue.
So basically, when I run a manual job, it runs through the steps:
While the
So basically, when I run a manual job, it runs through the steps:
PHP:
public function run($maxRunTime): JobResult
{
switch ($this->data['step'])
{
case 'creation':
// database dump && file zip
case 'cleanup':
// old backup deletion
case 'post-processing':
// offsite copying
return $this->complete();
}
return $this->complete();
}
post-processing was happening, Cloudflare timed out my page. This was for a pretty small site backup (100mb roughly into the backup, by the time the timeout occurred). Has anyone dealt with this before, and how did you work around this?
Last edited: