Quote:
Originally Posted by stejoh
Have two questions about the config file: What does the options below mean and what effects has the value 1 on these settings?
Quote:
// Backup Options
$backup['LOCK'] = 0; // Lock tables during dump
$backup['REPAIR'] = 0; // Repair & Optimize tables before dump
|
Quote:
// Combine Tables into one file
$backup['COMBINE'] = 0;
|
|
The first two are self-explanatory: LOCK prevents new data from being added to a tanle while it is being backed up and "REPAIR" checks for and fixes any errors before the backup.
The third combines all of the individual tables into a single SQL file if set to 1; if left at 0, you get separate files for each table in the database.