From b41a3786ffdcec6a7c5e2cf7f24f775f1e44274b Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 4 Sep 2024 15:59:48 +0200 Subject: [PATCH 01/39] Updated migrating to a new region article. --- .../migrate-between-regions.md | 70 ++++++++++++------- 1 file changed, 46 insertions(+), 24 deletions(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 5fa96e33069..395fb6284ee 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -15,7 +15,7 @@ The East US and West EU regions will be used as examples in this article. ## Prerequisites * Admin access and deployment rights on the project that is to be migrated. -* Git is installed locally as well as a Git client like _Git Bash_. +* A clone of both East US and West EU projects. * A local setup that can run an Umbraco instance. Learn more about this in the [Requirements](https://docs.umbraco.com/umbraco-cms/fundamentals/setup/requirements) article. {% hint style="info" %} @@ -43,40 +43,62 @@ Make sure that your projects are [prepared for migration](migrate-between-region {% endhint %} {% tabs %} + +### Step 1: Creating and restore database backup + {% tab title="Umbraco 10+" %} -1. Clone down the project that you want to migrate - the _EU project_. -2. Restore content and media through the Umbraco backoffice. -3. Clone down the new Cloud project created in the US region - the _US project_. -4. Replace the `src/UmbracoProject/umbraco-cloud.json` file in the _EU project_ with the one from the _US project_. +1. Go to **Configuration** > **Backups** on the **EU West** Cloud project. +2. Create a **backup** of the projects database. +3. Download the backup to your local machine. +4. Go to the **US East** project. +5. Go to **Configuration** > **Backups**. +6. Upload the **database backup** that you created in the previous step to the project. +7. Restore the **backup** to your environment + - **Optional** Create a backup of the environment before restoring the backup. +8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **US East** project. -{% hint style="info" %} -The `umbraco-cloud.json` file contains details about each environment on the Cloud project. +Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the content section, and Document Types and Data Types in the settings section. -By replacing the one on the _EU project_ with the one from the _US project_, content, and media transfers will point to the environments on the _US project_ instead of the _EU project_. -{% endhint %} -5. Commit the change through git, but do not push it yet. -6. Use the following git commands to connect your local _EU project_ to the live environment on the _US project_: +Taking a closer look at the templates, stylesheets, scripts media, you will notice that it is not there. In the next step we will migrate those over to our new project -``` -git remote rm origin -git remote add origin https://scm.umbraco.io/useast01/name-of-us-live-site.git +### step 2: Migrate files -git fetch +In this step, we will migrate our files and media items from our project on the EU region. -git branch --set-upstream-to=origin/master -``` +1. Clone down both project to your local machine. +2. Run the local US East project and restore the content. +3. Open project folders from both **EU West** and **US East**. +4. Move the view files located in the view folder from **EU West** to the view folder in the **US East** project. + - When promted replace the existing files. +5. Move the CSS and Script files located in the wwwroot folder from the **EU West** folder to the wwwroot folder in the **US East** project. +6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice +7. Run the **US East** project locally. -7. Push the schema and files from the _EU project_ to the _US project_ using the following git command: +Once you have started the project up, the project should show your content as it was on the **EU West** project. The only thing missing will be the media items, as they have not been migrated over yet. + +### Step 3: Migrate Media Items + +In the following step we will migrate our media items from our **EU West** project to our **US East** project. + +1. Run the **EU West** on your local machine +2. Go to the media section on the **EU West** project. +3. Click on the 3 dots in the top of the media section. +4. Click **Export** in the side-menu. +5. Click the button to export the media items located in the media section. +6. Click **Download** to download the zip file with the media items to your local machine. +7. Run the **East US** project on your local machine. +8. Navigate to the media section. +9. Click the 3 dots in the top of the media section. +10. Click **Import** in the side menu. +11. Click **Select ZIP file**. +12. Select the ZIP file, that you downloaded from the **East US** project. +13. Click **Import**. + +Once the import has finished refresh your media section, and when clicking on an image, you should be able to see it. Navigate to the front end of your **East US** project and the images will be shown on the front end as well now. -``` -git push origin master -f -``` -8. Verify that the schema and files have been merged into the live environment on the _US project_. -9. Transfer content and media from the local _EU project_ to the _US project_. -10. Verify that all the content and media have been transferred to the _US project_. {% endtab %} {% tab title="Umbraco 8" %} From 2b37f86b66f36f78ebb8de78856bb132d42a71e3 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 5 Sep 2024 09:54:53 +0200 Subject: [PATCH 02/39] Added the last steps for the guide --- .../getting-started/migrate-between-regions.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 395fb6284ee..5d654667848 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -96,8 +96,18 @@ In the following step we will migrate our media items from our **EU West** proje 12. Select the ZIP file, that you downloaded from the **East US** project. 13. Click **Import**. -Once the import has finished refresh your media section, and when clicking on an image, you should be able to see it. Navigate to the front end of your **East US** project and the images will be shown on the front end as well now. +Once the import has finished refresh your media section, and clicking on an image, you should be able to see it. Navigate to the front end of your local **East US** project and the images will be shown on the front end as well now. +Now that we have sorted everything out, it is time to push the changes back up to our **East US** environment. + +### Step 4: Pushing migrated project to Cloud + +In the following steps we will show, how you can push the migrated local **East US** project back up to the project on Cloud. + +1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. +2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. + +Once the media items, Views and styling has been transfered, check the **East US** to see if everything is looking as it should. {% endtab %} From f5a5136307916465463466c35ae69b7f7679d314 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 5 Sep 2024 11:27:09 +0200 Subject: [PATCH 03/39] remove mention of v8 and added hint and minor grammar changes --- .../migrate-between-regions.md | 73 ++++--------------- 1 file changed, 15 insertions(+), 58 deletions(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 5d654667848..d001579d420 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -6,7 +6,7 @@ description: >- # Migrate between regions -When creating a project on Umbraco Cloud, you can choose to host the project in different regions: East US, EU West, South UK, or East Australia. +Creating a project on Umbraco Cloud, you can choose to host the project in different regions: East US, West EU, South UK, or East Australia. In some cases, you might want to migrate your project(s) from one region to another. This article will outline the steps to do this. @@ -19,7 +19,7 @@ The East US and West EU regions will be used as examples in this article. * A local setup that can run an Umbraco instance. Learn more about this in the [Requirements](https://docs.umbraco.com/umbraco-cms/fundamentals/setup/requirements) article. {% hint style="info" %} -To follow this guide, it is highly recommended that you have experience with Git and running git commands through a command line tool. +If you want to migrate a Umbraco 8 project, you will need to upgrade to the latest supported [Long-Term-Supported (LTS)](https://umbraco.com/products/knowledge-center/long-term-support-and-end-of-life/) version of Umbraco CMS. {% endhint %} ## Prepare your projects @@ -42,20 +42,18 @@ The following steps will guide you through the migration process. Make sure that your projects are [prepared for migration](migrate-between-regions.md#prepare-your-projects) before continuing the process. {% endhint %} -{% tabs %} - ### Step 1: Creating and restore database backup {% tab title="Umbraco 10+" %} -1. Go to **Configuration** > **Backups** on the **EU West** Cloud project. +1. Go to **Configuration** > **Backups** on the **West EU** Cloud project. 2. Create a **backup** of the projects database. 3. Download the backup to your local machine. -4. Go to the **US East** project. +4. Go to the **East US** project. 5. Go to **Configuration** > **Backups**. 6. Upload the **database backup** that you created in the previous step to the project. 7. Restore the **backup** to your environment - **Optional** Create a backup of the environment before restoring the backup. -8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **US East** project. +8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **East US** project. Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the content section, and Document Types and Data Types in the settings section. @@ -68,22 +66,22 @@ Taking a closer look at the templates, stylesheets, scripts media, you will noti In this step, we will migrate our files and media items from our project on the EU region. 1. Clone down both project to your local machine. -2. Run the local US East project and restore the content. -3. Open project folders from both **EU West** and **US East**. -4. Move the view files located in the view folder from **EU West** to the view folder in the **US East** project. +2. Run the local East US project and restore the content. +3. Open project folders from both **West EU** and **East US**. +4. Move the view files located in the view folder from **West EU** to the view folder in the **East US** project. - When promted replace the existing files. -5. Move the CSS and Script files located in the wwwroot folder from the **EU West** folder to the wwwroot folder in the **US East** project. +5. Move the CSS and Script files located in the wwwroot folder from the **West EU** folder to the wwwroot folder in the **East US** project. 6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice -7. Run the **US East** project locally. +7. Run the **East US** project locally. -Once you have started the project up, the project should show your content as it was on the **EU West** project. The only thing missing will be the media items, as they have not been migrated over yet. +Once you have started the project up, the project should show your content as it was on the **West EU** project. The only thing missing will be the media items, as they have not been migrated over yet. ### Step 3: Migrate Media Items -In the following step we will migrate our media items from our **EU West** project to our **US East** project. +In the following step we will migrate our media items from our **West EU** project to our **East US** project. -1. Run the **EU West** on your local machine -2. Go to the media section on the **EU West** project. +1. Run the **West EU** on your local machine +2. Go to the media section on the **West EU** project. 3. Click on the 3 dots in the top of the media section. 4. Click **Export** in the side-menu. 5. Click the button to export the media items located in the media section. @@ -107,48 +105,7 @@ In the following steps we will show, how you can push the migrated local **East 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. -Once the media items, Views and styling has been transfered, check the **East US** to see if everything is looking as it should. - -{% endtab %} - -{% tab title="Umbraco 8" %} -1. Clone down the project that you want to migrate - the _EU project_. -2. Restore content and media through the Umbraco backoffice. -3. Clone down the new Cloud project created in the US region - the _US project_. -4. Replace the `Config/UmbracoDeploy.config` file in the _EU project_ with the one from the _US project_. - -{% hint style="info" %} -The `UmbracoDeploy.config` file contains details about each environment on the Cloud project. - -By replacing the one on the _EU project_ with the one from the _US project_, content, and media transfers will point to the environments on the _US project_ instead of the _EU project_. -{% endhint %} - -5. Commit the change through git, but do not push it yet. -6. Use the following git commands to connect your local _EU project_ to the live environment on the _US project_: - -``` -git remote rm origin - -git remote add origin https://scm.umbraco.io/useast01/name-of-us-live-site.git - -git fetch - -git branch --set-upstream-to=origin/master -``` - -7. Push the schema and files from the _EU project_ to the _US project_ using the following git command: - -``` -git push origin master -f -``` - -8. Verify that the schema and files have been merged into the live environment on the _US project_. -9. Transfer content and media from the local _EU project_ to the _US project_. -10. Verify that all the content and media have been transferred to the _US project_. -{% endtab %} -{% endtabs %} - -Once you have verified that all schema and files as well as content and media have successfully been deployed and transferred to your new _US project_ the migration process is complete. +Once the media items, Views and styling has been transfered, verified that all schema and files as well as content and media have successfully been deployed and transferred to your new _US project_ the migration process is complete. It is highly recommended to thoroughly go through everything on the migrated site to ensure that everything works as expected. From b8e945a2d18e4ac031008b4f84dd7f75203fdb82 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 5 Sep 2024 15:53:42 +0200 Subject: [PATCH 04/39] removed tabs --- umbraco-cloud/getting-started/migrate-between-regions.md | 1 - 1 file changed, 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index d001579d420..6cc2da9713e 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -44,7 +44,6 @@ Make sure that your projects are [prepared for migration](migrate-between-region ### Step 1: Creating and restore database backup -{% tab title="Umbraco 10+" %} 1. Go to **Configuration** > **Backups** on the **West EU** Cloud project. 2. Create a **backup** of the projects database. 3. Download the backup to your local machine. From f8cfaf3d59d79ee5f122c390738f2ee76514adbb Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:53:59 +0200 Subject: [PATCH 05/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6cc2da9713e..6c6701e7cc2 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -19,7 +19,7 @@ The East US and West EU regions will be used as examples in this article. * A local setup that can run an Umbraco instance. Learn more about this in the [Requirements](https://docs.umbraco.com/umbraco-cms/fundamentals/setup/requirements) article. {% hint style="info" %} -If you want to migrate a Umbraco 8 project, you will need to upgrade to the latest supported [Long-Term-Supported (LTS)](https://umbraco.com/products/knowledge-center/long-term-support-and-end-of-life/) version of Umbraco CMS. +If you want to migrate an Umbraco 8 project, you will need to upgrade to the latest supported [Long-Term-Supported (LTS)](https://umbraco.com/products/knowledge-center/long-term-support-and-end-of-life/) version of Umbraco CMS. {% endhint %} ## Prepare your projects From 5c307303ed8342f545d4a1af9dedc9686b13348b Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:54:13 +0200 Subject: [PATCH 06/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6c6701e7cc2..b8496aba2de 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -54,7 +54,7 @@ Make sure that your projects are [prepared for migration](migrate-between-region - **Optional** Create a backup of the environment before restoring the backup. 8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **East US** project. -Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the content section, and Document Types and Data Types in the settings section. +Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the Content section, Document Types, and Data Types in the Settings section. Taking a closer look at the templates, stylesheets, scripts media, you will notice that it is not there. In the next step we will migrate those over to our new project From 06bda3eec255c43f5e69595294014a161b71af55 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:54:23 +0200 Subject: [PATCH 07/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index b8496aba2de..5252954430d 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -60,7 +60,7 @@ Once you have restored the database to your environment, go to the backoffice of Taking a closer look at the templates, stylesheets, scripts media, you will notice that it is not there. In the next step we will migrate those over to our new project -### step 2: Migrate files +### Step 2: Migrate Files In this step, we will migrate our files and media items from our project on the EU region. From fb989beeb934af463afec822164d9ac86f60ba59 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:54:48 +0200 Subject: [PATCH 08/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 5252954430d..d97041cacfb 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -93,7 +93,7 @@ In the following step we will migrate our media items from our **West EU** proje 12. Select the ZIP file, that you downloaded from the **East US** project. 13. Click **Import**. -Once the import has finished refresh your media section, and clicking on an image, you should be able to see it. Navigate to the front end of your local **East US** project and the images will be shown on the front end as well now. +Once the import has finished, refresh your **Media** section. Click on an image to see it. Navigate to the front end of your local **East US** project, and the images will also be shown on the front end. Now that we have sorted everything out, it is time to push the changes back up to our **East US** environment. From f9e59b9029d4a7a49eb0ffcc3adb1cbadd9932a5 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:54:54 +0200 Subject: [PATCH 09/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index d97041cacfb..16b7629c83c 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -62,7 +62,7 @@ Taking a closer look at the templates, stylesheets, scripts media, you will noti ### Step 2: Migrate Files -In this step, we will migrate our files and media items from our project on the EU region. +In this step, we will migrate our files and media items from our project in the EU region. 1. Clone down both project to your local machine. 2. Run the local East US project and restore the content. From 7b6ffb13134c5d99c8b182d672e1fe8af1439ad3 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:55:03 +0200 Subject: [PATCH 10/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 16b7629c83c..2ed925c7241 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -90,7 +90,7 @@ In the following step we will migrate our media items from our **West EU** proje 9. Click the 3 dots in the top of the media section. 10. Click **Import** in the side menu. 11. Click **Select ZIP file**. -12. Select the ZIP file, that you downloaded from the **East US** project. +12. Select the ZIP file that you downloaded from the **East US** project. 13. Click **Import**. Once the import has finished, refresh your **Media** section. Click on an image to see it. Navigate to the front end of your local **East US** project, and the images will also be shown on the front end. From 6d9c99fe461559699677e4582ef5fc8a151e4a8a Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:55:11 +0200 Subject: [PATCH 11/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 2ed925c7241..d73a0241320 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -95,7 +95,7 @@ In the following step we will migrate our media items from our **West EU** proje Once the import has finished, refresh your **Media** section. Click on an image to see it. Navigate to the front end of your local **East US** project, and the images will also be shown on the front end. -Now that we have sorted everything out, it is time to push the changes back up to our **East US** environment. +Now that we have sorted everything out, it is time to push the changes back up to the **East US** environment. ### Step 4: Pushing migrated project to Cloud From 9c37c1af2ad1163caf7919b404855bfcd27ff07b Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:55:19 +0200 Subject: [PATCH 12/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index d73a0241320..416201b5fc6 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -99,7 +99,7 @@ Now that we have sorted everything out, it is time to push the changes back up t ### Step 4: Pushing migrated project to Cloud -In the following steps we will show, how you can push the migrated local **East US** project back up to the project on Cloud. +In the following steps we will show how you can push the migrated local **East US** project back up to the project on Cloud. 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. From af8f984bf11f5fbc4f6b4465ff8401a7ea5c71ac Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:55:34 +0200 Subject: [PATCH 13/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 416201b5fc6..da1dd9a1ad8 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -104,7 +104,7 @@ In the following steps we will show how you can push the migrated local **East U 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. -Once the media items, Views and styling has been transfered, verified that all schema and files as well as content and media have successfully been deployed and transferred to your new _US project_ the migration process is complete. +After transferring media items, views, and CSS, verify that all schemas, files, content, and media have been successfully deployed to your new _US project_. The migration process is complete. It is highly recommended to thoroughly go through everything on the migrated site to ensure that everything works as expected. From 6f33c63c298252e71aa674cc3453c4b89d16a007 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:56:15 +0200 Subject: [PATCH 14/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index da1dd9a1ad8..935e1002abf 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -68,7 +68,7 @@ In this step, we will migrate our files and media items from our project in the 2. Run the local East US project and restore the content. 3. Open project folders from both **West EU** and **East US**. 4. Move the view files located in the view folder from **West EU** to the view folder in the **East US** project. - - When promted replace the existing files. + - When prompted replace the existing files. 5. Move the CSS and Script files located in the wwwroot folder from the **West EU** folder to the wwwroot folder in the **East US** project. 6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice 7. Run the **East US** project locally. From f53bfe0e8ef792b7006d41d1bb4ed3354cc10b89 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:56:36 +0200 Subject: [PATCH 15/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 935e1002abf..ce2a4b338f0 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -67,7 +67,7 @@ In this step, we will migrate our files and media items from our project in the 1. Clone down both project to your local machine. 2. Run the local East US project and restore the content. 3. Open project folders from both **West EU** and **East US**. -4. Move the view files located in the view folder from **West EU** to the view folder in the **East US** project. +4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. 5. Move the CSS and Script files located in the wwwroot folder from the **West EU** folder to the wwwroot folder in the **East US** project. 6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice From ca294bf84fba1f052d442e94f042bc0e86bfb23b Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:59:54 +0200 Subject: [PATCH 16/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index ce2a4b338f0..6c6fe4b5d77 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -69,7 +69,7 @@ In this step, we will migrate our files and media items from our project in the 3. Open project folders from both **West EU** and **East US**. 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. -5. Move the CSS and Script files located in the wwwroot folder from the **West EU** folder to the wwwroot folder in the **East US** project. +5. Move the **CSS** and **Script** files located in the **wwwroot** folder from the **West EU** folder to the **wwwroot** folder in the **East US** project. 6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice 7. Run the **East US** project locally. From b524b9e918a8b84f75f43b716cd6b689f6bd680a Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:00:16 +0200 Subject: [PATCH 17/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6c6fe4b5d77..e7059febed0 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -64,7 +64,7 @@ Taking a closer look at the templates, stylesheets, scripts media, you will noti In this step, we will migrate our files and media items from our project in the EU region. -1. Clone down both project to your local machine. +1. Clone down both the projects to your local machine. 2. Run the local East US project and restore the content. 3. Open project folders from both **West EU** and **East US**. 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. From 63b88e48f41e0023fd95173721b25c0a450e000e Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:00:29 +0200 Subject: [PATCH 18/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index e7059febed0..38c4f0f3ee2 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -70,7 +70,7 @@ In this step, we will migrate our files and media items from our project in the 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. 5. Move the **CSS** and **Script** files located in the **wwwroot** folder from the **West EU** folder to the **wwwroot** folder in the **East US** project. -6. **Optional:** Move files from App_Plugins if you have extended the Umbraco Backoffice +6. **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice 7. Run the **East US** project locally. Once you have started the project up, the project should show your content as it was on the **West EU** project. The only thing missing will be the media items, as they have not been migrated over yet. From 0e1131fb58d99150d577376a3f45592c76cac5e0 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:00:39 +0200 Subject: [PATCH 19/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 38c4f0f3ee2..4da94e34b84 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -77,7 +77,7 @@ Once you have started the project up, the project should show your content as it ### Step 3: Migrate Media Items -In the following step we will migrate our media items from our **West EU** project to our **East US** project. +In the following step, we will migrate our media items from the **West EU** project to the **East US** project. 1. Run the **West EU** on your local machine 2. Go to the media section on the **West EU** project. From 8d34823066815faee098fbae8320589ac7d14046 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:01:00 +0200 Subject: [PATCH 20/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 4da94e34b84..aef8ca8dca8 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -73,7 +73,7 @@ In this step, we will migrate our files and media items from our project in the 6. **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice 7. Run the **East US** project locally. -Once you have started the project up, the project should show your content as it was on the **West EU** project. The only thing missing will be the media items, as they have not been migrated over yet. +Once you have started the project, it should show your content as it was on the **West EU** project. The only thing missing is the media items, as they have not been migrated yet. ### Step 3: Migrate Media Items From cb891943ece6c1218b942a9edc8509a6de233ebb Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:02:06 +0200 Subject: [PATCH 21/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index aef8ca8dca8..ddf1887dec0 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -79,7 +79,7 @@ Once you have started the project, it should show your content as it was on the In the following step, we will migrate our media items from the **West EU** project to the **East US** project. -1. Run the **West EU** on your local machine +1. Run the **West EU** project on your local machine. 2. Go to the media section on the **West EU** project. 3. Click on the 3 dots in the top of the media section. 4. Click **Export** in the side-menu. From 6c873d656786a6975519e4edcd3effc329ac651c Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:37:00 +0200 Subject: [PATCH 22/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index ddf1887dec0..181df7818d7 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -81,7 +81,7 @@ In the following step, we will migrate our media items from the **West EU** proj 1. Run the **West EU** project on your local machine. 2. Go to the media section on the **West EU** project. -3. Click on the 3 dots in the top of the media section. +3. Click on the 3 dots at the top of the **Media** section. 4. Click **Export** in the side-menu. 5. Click the button to export the media items located in the media section. 6. Click **Download** to download the zip file with the media items to your local machine. From f2ca3c6f02a7b9cd172e0841d92dd0eac8e7546c Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:37:17 +0200 Subject: [PATCH 23/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 181df7818d7..6b868d97fc4 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -80,7 +80,7 @@ Once you have started the project, it should show your content as it was on the In the following step, we will migrate our media items from the **West EU** project to the **East US** project. 1. Run the **West EU** project on your local machine. -2. Go to the media section on the **West EU** project. +2. Go to the **Media** section of the **West EU** project. 3. Click on the 3 dots at the top of the **Media** section. 4. Click **Export** in the side-menu. 5. Click the button to export the media items located in the media section. From fe4d036e39b174a5324b3177eb6c62d23f56d9cd Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:38:08 +0200 Subject: [PATCH 24/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6b868d97fc4..c73207cb0e7 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -83,7 +83,7 @@ In the following step, we will migrate our media items from the **West EU** proj 2. Go to the **Media** section of the **West EU** project. 3. Click on the 3 dots at the top of the **Media** section. 4. Click **Export** in the side-menu. -5. Click the button to export the media items located in the media section. +5. Click the button to export the media items located in the **Media** section. 6. Click **Download** to download the zip file with the media items to your local machine. 7. Run the **East US** project on your local machine. 8. Navigate to the media section. From de59d54815f2b27c9fe108adfd95ee50f1afa43d Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:58:10 +0200 Subject: [PATCH 25/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index c73207cb0e7..924cc494e8c 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -87,7 +87,7 @@ In the following step, we will migrate our media items from the **West EU** proj 6. Click **Download** to download the zip file with the media items to your local machine. 7. Run the **East US** project on your local machine. 8. Navigate to the media section. -9. Click the 3 dots in the top of the media section. +9. Click on the 3 dots at the top of the **Media** section. 10. Click **Import** in the side menu. 11. Click **Select ZIP file**. 12. Select the ZIP file that you downloaded from the **East US** project. From be63eb837dd254ce9d148c779dba3d7553019d26 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:01:59 +0200 Subject: [PATCH 26/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 924cc494e8c..73e88edfd79 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -66,7 +66,7 @@ In this step, we will migrate our files and media items from our project in the 1. Clone down both the projects to your local machine. 2. Run the local East US project and restore the content. -3. Open project folders from both **West EU** and **East US**. +3. Open both the project folders for **West EU** and **East US**. 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. 5. Move the **CSS** and **Script** files located in the **wwwroot** folder from the **West EU** folder to the **wwwroot** folder in the **East US** project. From 5a1a20446d10946ec1676f1abc2d47bb7bbc48a6 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 6 Sep 2024 11:04:27 +0200 Subject: [PATCH 27/39] updated based on feedback --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6cc2da9713e..d4ab7e3b3db 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -86,7 +86,7 @@ In the following step we will migrate our media items from our **West EU** proje 5. Click the button to export the media items located in the media section. 6. Click **Download** to download the zip file with the media items to your local machine. 7. Run the **East US** project on your local machine. -8. Navigate to the media section. +8. Go to the media section. 9. Click the 3 dots in the top of the media section. 10. Click **Import** in the side menu. 11. Click **Select ZIP file**. From 157357e0b1a08e7693dabb725123ead7b7014239 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 6 Sep 2024 11:07:51 +0200 Subject: [PATCH 28/39] update based on feedback --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 73e88edfd79..310c3533205 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -86,7 +86,7 @@ In the following step, we will migrate our media items from the **West EU** proj 5. Click the button to export the media items located in the **Media** section. 6. Click **Download** to download the zip file with the media items to your local machine. 7. Run the **East US** project on your local machine. -8. Navigate to the media section. +8. Go to the **Media** section of the **East US** 9. Click on the 3 dots at the top of the **Media** section. 10. Click **Import** in the side menu. 11. Click **Select ZIP file**. From b9721577d0148abd40c5dfb54f4193306a5e471c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 9 Sep 2024 13:40:57 +0200 Subject: [PATCH 29/39] updated steps on migrating media to use blob --- .../migrate-between-regions.md | 51 ++++++++----------- 1 file changed, 22 insertions(+), 29 deletions(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 310c3533205..64e62fc495b 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -57,7 +57,7 @@ Make sure that your projects are [prepared for migration](migrate-between-region Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the Content section, Document Types, and Data Types in the Settings section. -Taking a closer look at the templates, stylesheets, scripts media, you will notice that it is not there. In the next step we will migrate those over to our new project +Taking a closer look at the templates, stylesheets, scripts and media, you will notice that it is not there. In the next step we will migrate those over to our new project ### Step 2: Migrate Files @@ -70,41 +70,34 @@ In this step, we will migrate our files and media items from our project in the 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. 5. Move the **CSS** and **Script** files located in the **wwwroot** folder from the **West EU** folder to the **wwwroot** folder in the **East US** project. -6. **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice + 1. **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice +6. Move custom code (Models, Controllers and other relevant code) from the **West EU** to the **East US** project 7. Run the **East US** project locally. -Once you have started the project, it should show your content as it was on the **West EU** project. The only thing missing is the media items, as they have not been migrated yet. - -### Step 3: Migrate Media Items - -In the following step, we will migrate our media items from the **West EU** project to the **East US** project. - -1. Run the **West EU** project on your local machine. -2. Go to the **Media** section of the **West EU** project. -3. Click on the 3 dots at the top of the **Media** section. -4. Click **Export** in the side-menu. -5. Click the button to export the media items located in the **Media** section. -6. Click **Download** to download the zip file with the media items to your local machine. -7. Run the **East US** project on your local machine. -8. Go to the **Media** section of the **East US** -9. Click on the 3 dots at the top of the **Media** section. -10. Click **Import** in the side menu. -11. Click **Select ZIP file**. -12. Select the ZIP file that you downloaded from the **East US** project. -13. Click **Import**. - -Once the import has finished, refresh your **Media** section. Click on an image to see it. Navigate to the front end of your local **East US** project, and the images will also be shown on the front end. - -Now that we have sorted everything out, it is time to push the changes back up to the **East US** environment. +Once you have started the project, it should show your content as it was on the **West EU** project. The only thing missing is the media items, as they have not been migrated yet. Before we can migrated our media items, we need to push the migrated files to the Cloud project. -### Step 4: Pushing migrated project to Cloud +### Step 3: Pushing migrated project to Cloud -In the following steps we will show how you can push the migrated local **East US** project back up to the project on Cloud. +In the following steps we will push the migrated local **East US** project back up to the project on Cloud. 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. - -After transferring media items, views, and CSS, verify that all schemas, files, content, and media have been successfully deployed to your new _US project_. The migration process is complete. + +Verify that all schemas, files and content have been successfully deployed to your new _US project_ after the transfer. + +### Step 4: Migrate Media Items + +In the following step, we will migrate the media items from the **West EU** blob storage container to the **East US** blob storage container. + +1. Follow the guide in the [Connect to Azure Storage Explorer](../set-up/media/connect-to-azure-storage-explorer.md) article to access the Azure Blob Storage container connected to both the **West EU** and **East US** environment. +2. Locate the media files for the **West EU** Umbraco project. +3. Download the **West EU** media folder from the Azure Storage Explorer. +4. Go to the **East US** blob container. +5. Uploaed the **West EU** media folder to the **East US** blob container. +6. Reload the front end and backoffice of the **East US** project to verify that the images have been added correctly. + + +When the media folder has been moved to the migrated project the migration process is complete. It is highly recommended to thoroughly go through everything on the migrated site to ensure that everything works as expected. From 1cfa53abd91101c84c21d27d0da4025202c2224c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 9 Sep 2024 13:42:46 +0200 Subject: [PATCH 30/39] Minor grammar fix --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 64e62fc495b..6fcaf6ce273 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -93,7 +93,7 @@ In the following step, we will migrate the media items from the **West EU** blob 2. Locate the media files for the **West EU** Umbraco project. 3. Download the **West EU** media folder from the Azure Storage Explorer. 4. Go to the **East US** blob container. -5. Uploaed the **West EU** media folder to the **East US** blob container. +5. Upload the **West EU** media folder to the **East US** blob container. 6. Reload the front end and backoffice of the **East US** project to verify that the images have been added correctly. From 9346b0ab08b722508227f2ce57f466367f382953 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:46:09 +0200 Subject: [PATCH 31/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 6fcaf6ce273..1a6c34fa342 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -51,7 +51,7 @@ Make sure that your projects are [prepared for migration](migrate-between-region 5. Go to **Configuration** > **Backups**. 6. Upload the **database backup** that you created in the previous step to the project. 7. Restore the **backup** to your environment - - **Optional** Create a backup of the environment before restoring the backup. + - **Optional:** Create a backup of the environment before restoring the backup. 8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **East US** project. Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the Content section, Document Types, and Data Types in the Settings section. From df0d6b9039f97d1a1fc077d6bf24d634298b64ad Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:46:47 +0200 Subject: [PATCH 32/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 1a6c34fa342..bb82299f98f 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -52,7 +52,8 @@ Make sure that your projects are [prepared for migration](migrate-between-region 6. Upload the **database backup** that you created in the previous step to the project. 7. Restore the **backup** to your environment - **Optional:** Create a backup of the environment before restoring the backup. -8. Run a **Export Schema** and then **Update Umbraco Schema** from the **Deploy Dashboard** in the settings section of the **East US** project. +8. Run **Export Schema** from the **Deploy Dashboard** in the **Settings** section of the **East US** project. +9. Run **Update Umbraco Schema** from the **Deploy Dashboard** in the **Settings** section of the **East US** project. Once you have restored the database to your environment, go to the backoffice of the project you are migrating to. In the backoffice, you should now see your content in the Content section, Document Types, and Data Types in the Settings section. From 904940be8f436b619496d60e606d6fd0d12197be Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:46:52 +0200 Subject: [PATCH 33/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index bb82299f98f..d9db3438c9a 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -71,7 +71,7 @@ In this step, we will migrate our files and media items from our project in the 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files. 5. Move the **CSS** and **Script** files located in the **wwwroot** folder from the **West EU** folder to the **wwwroot** folder in the **East US** project. - 1. **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice + - **Optional:** Move files from **App_Plugins** if you have extended the Umbraco Backoffice 6. Move custom code (Models, Controllers and other relevant code) from the **West EU** to the **East US** project 7. Run the **East US** project locally. From b45181b447d88515e33fd4c0eb25ef24123d2e0a Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:47:04 +0200 Subject: [PATCH 34/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index d9db3438c9a..597ed646f31 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -77,7 +77,7 @@ In this step, we will migrate our files and media items from our project in the Once you have started the project, it should show your content as it was on the **West EU** project. The only thing missing is the media items, as they have not been migrated yet. Before we can migrated our media items, we need to push the migrated files to the Cloud project. -### Step 3: Pushing migrated project to Cloud +### Step 3: Push the Migrated Project to Cloud In the following steps we will push the migrated local **East US** project back up to the project on Cloud. From 65b6e95a7046ed6212cd09b0d95635316c323085 Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:47:14 +0200 Subject: [PATCH 35/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 597ed646f31..ea531729bfc 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -79,7 +79,7 @@ Once you have started the project, it should show your content as it was on the ### Step 3: Push the Migrated Project to Cloud -In the following steps we will push the migrated local **East US** project back up to the project on Cloud. +In the following steps, we will push the migrated local **East US** project back up to the project on Cloud. 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. From 5813d640b451e1f3faa4ce575490d33840fff67a Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:47:22 +0200 Subject: [PATCH 36/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index ea531729bfc..81b3b38b0d4 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -84,7 +84,7 @@ In the following steps, we will push the migrated local **East US** project back 1. Follow the [Deploying Changes](https://docs.umbraco.com/umbraco-cloud/deployments/local-to-cloud) article to push the Views, CSS and JavaScript files to the Cloud environment. 2. Follow the [Transferring Content, Media, Members, and Forms](https://docs.umbraco.com/umbraco-cloud/deployments/content-transfer#media-items)article to transfer the media items to the cloud project. -Verify that all schemas, files and content have been successfully deployed to your new _US project_ after the transfer. +Verify that all schemas, files, and content have been successfully deployed to your new _US project_ after the transfer. ### Step 4: Migrate Media Items From fd1f7849341a11c29836d4d1c561f6847187928c Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:47:46 +0200 Subject: [PATCH 37/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index 81b3b38b0d4..bd449da3151 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -88,7 +88,7 @@ Verify that all schemas, files, and content have been successfully deployed to y ### Step 4: Migrate Media Items -In the following step, we will migrate the media items from the **West EU** blob storage container to the **East US** blob storage container. +In the following steps, we will migrate the media items from the **West EU** blob storage container to the **East US** blob storage container. 1. Follow the guide in the [Connect to Azure Storage Explorer](../set-up/media/connect-to-azure-storage-explorer.md) article to access the Azure Blob Storage container connected to both the **West EU** and **East US** environment. 2. Locate the media files for the **West EU** Umbraco project. From 838c3bd282e9850bd1a742f7168d40a326c9a85b Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:47:54 +0200 Subject: [PATCH 38/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index bd449da3151..c60b75212a2 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -42,7 +42,7 @@ The following steps will guide you through the migration process. Make sure that your projects are [prepared for migration](migrate-between-regions.md#prepare-your-projects) before continuing the process. {% endhint %} -### Step 1: Creating and restore database backup +### Step 1: Create and Restore Database Backup 1. Go to **Configuration** > **Backups** on the **West EU** Cloud project. 2. Create a **backup** of the projects database. From ea02cab944e95d3997d8309fa785bfc8a39d423e Mon Sep 17 00:00:00 2001 From: jonat123 <54025331+jonat123@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:48:00 +0200 Subject: [PATCH 39/39] Update umbraco-cloud/getting-started/migrate-between-regions.md Co-authored-by: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> --- umbraco-cloud/getting-started/migrate-between-regions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umbraco-cloud/getting-started/migrate-between-regions.md b/umbraco-cloud/getting-started/migrate-between-regions.md index c60b75212a2..7c427a5baa9 100644 --- a/umbraco-cloud/getting-started/migrate-between-regions.md +++ b/umbraco-cloud/getting-started/migrate-between-regions.md @@ -66,7 +66,7 @@ Taking a closer look at the templates, stylesheets, scripts and media, you will In this step, we will migrate our files and media items from our project in the EU region. 1. Clone down both the projects to your local machine. -2. Run the local East US project and restore the content. +2. Run the local **East US** project and restore the content. 3. Open both the project folders for **West EU** and **East US**. 4. Move the **view** files located in the view folder from **West EU** to the view folder in the **East US** project. - When prompted replace the existing files.