You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 14/umbraco-deploy/deployment-workflow/import-export-v7.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ description: How to export content and schema from Umbraco 7 and import into a n
5
5
6
6
### Migrating from Umbraco 7
7
7
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 using the service.
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
-
However, we can still use this feature to help migrate from Umbraco 7 to a supported major version. This requires additional logic to be added to your Umbraco 7 project to create an export ZIP archive similar to newer versions.
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
12
#### Exporting Umbraco 7 content and schema
13
13
14
-
We can generate an export archive in the same format as used by 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 then 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.
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
16
16
This is possible via code, by temporarily applying a composer to an Umbraco 7 project to generate the export archive on start-up:
17
17
@@ -152,7 +152,7 @@ internal class LegacyImportComposer : IComposer
152
152
.Append<ElementTypeArtifactMigrator>();
153
153
154
154
builder.DeployPropertyTypeMigrators()
155
-
.AddLegacyMigrators(); // Available since Deploy Contrib 13.3.0 and 14.2.0+
155
+
.AddLegacyMigrators(); // Available from Deploy Contrib 13.3.0 and 14.2.0+
@@ -176,7 +176,7 @@ Umbraco Deploy for Umbraco 7 is no longer supported and was only available on Um
176
176
177
177
As such if you are looking to migrate from an Umbraco Cloud project running on Umbraco 7, you already have Umbraco Deploy installed.
178
178
179
-
If you have an Umbraco 7 on-premises website, you can use this guide to migrate from on-premises to Umbraco Cloud. Or to upgrade to a newer Deploy On-premises version. You will need to obtain and install Umbraco Deploy for Umbraco 7 into your project, solely to use the export feature.
179
+
If you have an Umbraco 7 on-premises website, you can use this guide to migrate from on-premises to Umbraco Cloud. Or to upgrade to a newer Deploy On-premises version. You need to obtain and install Umbraco Deploy for Umbraco 7 into your project, solely to use the export feature.
180
180
181
181
The export feature can be used without a license.
182
182
@@ -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