|
1 | 1 | --- |
2 | 2 | meta.Title: Migrating from Umbraco 7 |
3 | | -description: How to export content and schema from Umbraco 7 and import into a newer version |
| 3 | +description: How to export content and schema from Umbraco 7 and import them into a newer version |
4 | 4 | --- |
5 | 5 |
|
6 | | -### Migrating from Umbraco 7 |
| 6 | +# Migrating from Umbraco 7 |
7 | 7 |
|
8 | 8 | The import and export features are available for Umbraco Deploy supporting Umbraco 8 and above. It's not been ported back to Umbraco 7, hence you cannot trigger an export from the backoffice or use the service. |
9 | 9 |
|
10 | 10 | However, you can still use this feature to help migrate from Umbraco 7 to a supported major version. This requires adding additional logic to your Umbraco 7 project to create an export ZIP archive similar to newer versions. |
11 | 11 |
|
12 | | -#### Exporting Umbraco 7 content and schema |
| 12 | +## Exporting Umbraco 7 content and schema |
13 | 13 |
|
14 | 14 | You can generate an export archive in the same format as the import/export feature. This is done by adding the [`Umbraco.Deploy.Contrib.Export` assembly](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-2.0.0-export) to your Umbraco 7 project (that already has Deploy and Deploy Contrib installed, see below). This archive can be imported into a newer Umbraco version by configuring the legacy import migrators. You can also apply additional migrators to update obsolete data types and property data into newer equivalents. |
15 | 15 |
|
@@ -88,7 +88,7 @@ public class DeployExportApplicationHandler : ApplicationEventHandler |
88 | 88 |
|
89 | 89 | </details> |
90 | 90 |
|
91 | | -#### Importing Umbraco 7 content and schema |
| 91 | +## Importing Umbraco 7 content and schema |
92 | 92 |
|
93 | 93 | To import this archive into a newer Umbraco project, you need to install either of these packages: |
94 | 94 |
|
@@ -170,7 +170,7 @@ internal class LegacyImportComposer : IComposer |
170 | 170 | It is recommended to start by importing only the schema and schema files (by deselecting 'Content' and 'Content files' in the dialog). Then, you can proceed with importing all content and schema together. The order in which the artifacts are imported depends on their dependencies. By importing the schema first, we ensure that the schema is updated before any content is processed. |
171 | 171 | {% endhint %} |
172 | 172 |
|
173 | | -#### Obtaining Umbraco Deploy for Umbraco 7 |
| 173 | +## Obtaining Umbraco Deploy for Umbraco 7 |
174 | 174 |
|
175 | 175 | Umbraco Deploy for Umbraco 7 is no longer supported and was only available on Umbraco Cloud. It was not released for use on-premise. |
176 | 176 |
|
@@ -229,4 +229,4 @@ Use this guide to migrate from on-premises to Umbraco Cloud or to upgrade to a n |
229 | 229 |
|
230 | 230 | 4. Export Content. |
231 | 231 |
|
232 | | -- **Export** your content, schema, and files to zip. |
| 232 | +- **Export** your content, schema, and files to zip. |
0 commit comments