Quote:
Originally Posted by Paul M
You would need to override the options in the copies you make (hard code them).
|
Ok thanks,
From your mysqlbackup.php file, I see these rows referencing the settings
Code:
$this->DATE = date($this->OPTIONS['cbu_date']);
$this->PREFIX = &$this->OPTIONS['cbu_prefix'];
$this->DUMP_PATH = &$this->OPTIONS['cbu_path'];
Should they be hardcoded on to a new mysqlbackup2.php like
Code:
$this->DATE = date($M);
$this->PREFIX = &monthly-backup;
$this->DUMP_PATH = &/home/user/my-custom-path/;
Please advise what would be the correct hardcoded part
Thanks