Hello,
I have upgrade from Drupal 6.12 to 6.13.
Don't know if it's the problem, because module Backup & Migrate was installed and activated, but not yet used !
Now I try to enter in the Backup and Migrate configuration.
I have this error :
* user warning: Table '<b>dm_epa.backup_migrate_destinations' doesn't exist</b> query: SELECT * FROM backup_migrate_destinations in /home/didier/www/drupal/sites/all/modules/backup_migrate/includes/crud.inc on line 591.
* user warning: Table 'dm_epa.backup_migrate_profiles' doesn't exist query: SELECT * FROM backup_migrate_profiles in /home/didier/www/drupal/sites/all/modules/backup_migrate/includes/crud.inc on line 591.I check with phpMyAdmin : prefix is missing !
the table is not "dm_epa.backup_migrate_destinations"
but must be "dm_epa.drup_epabackup_migrate_destinations"
the table prefix "drup_epa" is missing ! (but is used with other table...)
I try to desactivated the backup and migrate module, and uninstall completly.
I check with phpMySQL and the tables "dm_epa.drup_epabackup_migrate_..." were deleted (correct)
I reactivate the module, and try again, but the problem reoccurs.
An idea ?
Thanks
;-)
Comments
Same issue here also
I have the exact same issue also and tried the above uninstall steps also to no avail; althoigh I think this issue should be in the module's issue queue here: http://drupal.org/node/add/project-issue/backup_migrate
I had no problems until I updated to the latest release on this date.
Thanks!
Brian
Bug report...
Hello,
I upgrade to the last Dev version (8th July) but it doesn't solve the problem...
So, I just open a bug report ;-)
http://drupal.org/node/514322
It seem not too difficult to correct.
I hope we will soon have a new version running correctly.
Thanks.
Run db update
Not sure if this helps since you posted this issue a long time ago but I received the same error today on one of my Drupal 6.x sites and I needed to run update.php to update the database schema to fix this. Once I ran update.php I received this confirmation the issue was fixed:
Update #2004
* ALTER TABLE {backup_migrate_destinations} CHANGE `destination_id` `destination_id` VARCHAR(32) NOT NULL DEFAULT '0'
* ALTER TABLE {backup_migrate_profiles} CHANGE `profile_id` `profile_id` VARCHAR(32) NOT NULL DEFAULT '0'
* ALTER TABLE {backup_migrate_schedules} CHANGE `schedule_id` `schedule_id` VARCHAR(32) NOT NULL DEFAULT '0'
Of course make sure you backup your db before running update.php.