To be fair, it’s a backup/restore plug-in, not a migration plug-in. Records of which files are available are stored in the database, just like with other files. Since you’re using a different db, obviously there will be no record of which files have been created.
You can recover by locating the required db file in wp-content/updraft, extracting it and importing it via phpmyadmin or some other mysql client.
Hope that helps.
Thanks for the quick response.
I tried importing via phpMyAdmin, but it’s giving me an error:
—
Error: 1044 SQLSTATE: 42000 (ER_DBACCESS_DENIED_ERROR)
Message: Access denied for user ‘%s’@’%s’ to database ‘%s’
—
Do I need to rename the database in the exported file to that of the one I’m importing into?
Thanks again.
In my experience, you shouldn’t need to rename the database since the database name is not specified in the script (except in the comments). However, the domain name is all over it – this is not an Updraft fault, but a “feature of WordPress”. So if you are using a different domain name, you’ll have to change that in your file.
However, the error you are getting seems to be a simple permission error. All that the script does is drop and create tables (+ insert data), so I can only suggest that you try creating a table and dropping it before doing the import. This way, you can test weather there is a problem in the script of if you have a more basic problem with database permissions.