
Originally Posted by
MaximumOverload
Super mod but not totally sure if its working correctly. I get this DEBUG log in my cache folder.
Line 135:
Code:
unlink($this->options['basedir'] . "/" . $this->options['name'] . ".tmp");
Create a SQL BackUp File From "my database" Database:
YES
Backup complete site is selected
The SQL file is generated in the
/backups which seems fine.
The
/cache folder generates 3 files. A compressed backup, a tmp file of some sort and the log above.
I have the latest ZC.
Your archive file should be fine.
What has happened is if you choose gzip as and archive type it will create a temp file and when I tried to delete it fails.
Here is the fix to stop the warning and delete the temp file.
admin/includes/classes/archive.php around line 135 you will find:
PHP Code:
unlink($this->options['basedir'] . "/" . $this->options['name'] . ".tmp");
Change to:
PHP Code:
unlink($this->options['name'] . ".tmp");
That should fix the warning and remove the temp file.
Skip