Error When Upgrading from v8 - v10 - The migration plan does not support migrating from state {2a3f3...}
Hi All.
I am trying to migrate an Umbraco v8 site and get it working with Umbraco v10 - ultimately I am trying to get it to run on v13 but am trying to get it to v10 first as per advice on here.
I have taken the following steps:
Install fresh Umbraco 10 using following, changing the connection string to the correct credentials:
Restore v8 database in SQL Management Studio 19 successfully.
Removing connection string so that Umbraco installer runs.
Click "Change Database" and put in correct database name and password. Click Install
I then get the following error:
The database failed to upgrade. ERROR: The database configuration failed with the following message: The migration plan does not support migrating from state "{2AB29964-02A1-474D-BD6B-72148D2A53A2}". Please check log file for additional information (can be found in 'LoggingSettings.Directory')
Does anyone know if this is an error that can be saved in appsettings.json or do I have to edit values in the actual database?
When I was updating a site on Cloud from 9 -> 10 it was also spitting out a ton of these errors. In our case it was the ids for mainly Umbraco Deploy and Forms.
Umbraco Support gave the instructions to:
Check what item it is that's causing the issue using the id in the error.
Find and remove its entry from the database.
They were things that were auto-generated when run so after removing them from the DB and proceeding with the update it would just remake them for the correct version.
If you look around the forums for other migration/upgrade errors, the common thread is removing entries from the database. I don't think there's anything in appsettings that can help you.
Error When Upgrading from v8 - v10 - The migration plan does not support migrating from state {2a3f3...}
Hi All.
I am trying to migrate an Umbraco v8 site and get it working with Umbraco v10 - ultimately I am trying to get it to run on v13 but am trying to get it to v10 first as per advice on here.
I have taken the following steps:
dotnet new -i Umbraco.Templates::10.8.5 --force
Restore v8 database in SQL Management Studio 19 successfully.
Removing connection string so that Umbraco installer runs.
Click "Change Database" and put in correct database name and password. Click Install
I then get the following error:
The database failed to upgrade. ERROR: The database configuration failed with the following message: The migration plan does not support migrating from state "{2AB29964-02A1-474D-BD6B-72148D2A53A2}". Please check log file for additional information (can be found in 'LoggingSettings.Directory')
Does anyone know if this is an error that can be saved in appsettings.json or do I have to edit values in the actual database?
Thanks
You might try migrating to 10.8.3 instead of 10.8.5 and see if that resolves your issue.
When I was updating a site on Cloud from 9 -> 10 it was also spitting out a ton of these errors. In our case it was the ids for mainly Umbraco Deploy and Forms.
Umbraco Support gave the instructions to:
They were things that were auto-generated when run so after removing them from the DB and proceeding with the update it would just remake them for the correct version.
If you look around the forums for other migration/upgrade errors, the common thread is removing entries from the database. I don't think there's anything in appsettings that can help you.
Hi All,
Found the error - very trivial:
Even though I specified Umbraco.Templates:::10.8.5 on the dotnet install - it installed the latest version (13.something)
I just repeated the install, making sure it was 10.8.5 and it worked after.
is working on a reply...