A regression in the 1.4.10 release caused [Issue #580], an error that caused the table names in backups to be surrounded by '' not ``. As an example:
Correct:
Broken:
If the tables names are surrounded by '' and not `` you will get an SQL error. If you have this, please use this file:
fixbackup.php (Size: 897 bytes / Downloads: 313)
Upload your backup to your server (like you would any other file) as a plain .sql file and edit the path to it on line 7 of this fix file. It will create a new backup file called 'new_backup.sql', (you can change this name if you want) and will not modify your current backup file. Also PLEASE MAKE SURE YOU DELETE THE FIXBACKUP.PHP FILE AFTER USE.
Hopefully this will solve the issue for people who have it. Note that this should only affect people who used an earlier version of 1.4.10; to fix the issue, please redownload 1.4.10 and upload a new copy of ./inc/tasks/backupdb.php, and upload it over your current version.
Correct:
INSERT INTO table (`something`) VALUES ('something');
Broken:
INSERT INTO table ('something') VALUES ('something');
If the tables names are surrounded by '' and not `` you will get an SQL error. If you have this, please use this file:
fixbackup.php (Size: 897 bytes / Downloads: 313)
Upload your backup to your server (like you would any other file) as a plain .sql file and edit the path to it on line 7 of this fix file. It will create a new backup file called 'new_backup.sql', (you can change this name if you want) and will not modify your current backup file. Also PLEASE MAKE SURE YOU DELETE THE FIXBACKUP.PHP FILE AFTER USE.
Hopefully this will solve the issue for people who have it. Note that this should only affect people who used an earlier version of 1.4.10; to fix the issue, please redownload 1.4.10 and upload a new copy of ./inc/tasks/backupdb.php, and upload it over your current version.