Allow all database tables
-
We are on version 4.2.0 of the plugin (most current at this time). We are using some custom database tables that don’t have the usual table prefix. I just took a look at one of the backups and noticed that you’re not backing those up in the plugin. Can you add a setting to allow all database tables to be backed up? Meanwhile, I’ve modified line 282 of dhdo.php to…
$tables = $wpdb->get_col( “SHOW TABLES” );
rather than…
$tables = $wpdb->get_col( “SHOW TABLES LIKE ‘” . $wpdb->prefix . “%'” );
…in order to get all of the tables into our backups.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Allow all database tables’ is closed to new replies.