The "Export" button correctly creates a copy of a site backup file in /data/disk/o1/backup-exports, and the "Get" button downloads that file to your local computer. Works fine for *.gz backup files at least up to 50MB, but fails for files over 200MB or so.
Fortunately, the fix is quite simple. In the function 'hosting_site_backup_manager.module' add two flush related statements:
line 347:
while (!feof($fd)) {
print fread($fd, 1024);
+ ob_flush();
+ flush();
}
Thanks for all the fish!
-- Cronin
PS - Here's where I found a discussion of downloading large files:
http://stackoverflow.com/questions/597159/downloading-large-files-reliab...
Comments
Comment #2
cvining commentedComment #4
helmo commentedThanks, committed.