Quote:
Originally Posted by cybermomcafe
Did you chmod the folder that the backup is being written into to 777?
Are you using an absolute path to the backup folder (i.e. /home/user/public_html/backup/) or wherever it is?
Also, if you are running it again on the same date, make sure that there is not a file in the backup folder with that date already...  hth
|
The script auto removes a file of the same name before the backup process.
-------
But yes, cyber is right, make sure you are chmodding the directory you are wanting to save the dump to, 777.
Also make sure the path is valid. Either use a full path, or a path relative to the main forum directory.
For example I use:
$backup['DUMP_PATH'] = 'admincp/backups';
Which saves the dump to the backups folder inside my admincp folder.