Zip creation process
-
I had an issue where backups stopped working. While researching it (another plugin caused the problem) I noticed the process of creating the zip files is as such:
1. Create <long file name>.tmp.XXXX file of a few MB
2. Copy <long file name>.tmp.XXXX to <long file name>.tmp
3. Create <long file name>.tmp.XXXX file from scratch up to a few MB more than previous size
4. Repeat steps 2 and 3 until zip process is doneI looked at the FAQ and did some web searches to try and understand why the zip files are recreated incrementally. The final size of my plugins backup is 27MB, but that requires creating a 5MB, 9MB, 13MB, 17MB, 23MB, and finally 27MB files.
This happens with both binary-zip option enabled and disabled. I even used the php script on the back-end with both options and the behavior is the same.
Is this by design?
The topic ‘Zip creation process’ is closed to new replies.