From 38e497a7bb7c65d42cc2a2d6ed2b376bae1f76b7 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Thu, 12 Dec 2024 21:22:01 +0100 Subject: [PATCH 01/17] Described option for using understores in product keys when configuring product licenses with environment variables. --- 10/umbraco-commerce/installation/licensing-model.md | 8 ++++++++ 10/umbraco-ui-builder/installation/licensing-model.md | 8 ++++++++ .../installation/the-licensing-model.md | 8 ++++++++ 13/umbraco-deploy/installation/install-configure.md | 8 ++++++++ 13/umbraco-deploy/installation/the-licensing-model.md | 8 ++++++++ 13/umbraco-engage/installation/licensing.md | 9 +++++++++ 13/umbraco-ui-builder/installation/licensing-model.md | 8 ++++++++ .../getting-started/the-licensing-model.md | 8 ++++++++ 14/umbraco-deploy/installation/install-configure.md | 8 ++++++++ 14/umbraco-deploy/installation/the-licensing-model.md | 8 ++++++++ 14/umbraco-ui-builder/installation/licensing-model.md | 11 ++++++++++- .../getting-started/the-licensing-model.md | 6 ++++++ 15/umbraco-deploy/installation/install-configure.md | 8 ++++++++ 15/umbraco-deploy/installation/the-licensing-model.md | 8 ++++++++ 15/umbraco-ui-builder/installation/licensing-model.md | 10 +++++++++- 15 files changed, 122 insertions(+), 2 deletions(-) diff --git a/10/umbraco-commerce/installation/licensing-model.md b/10/umbraco-commerce/installation/licensing-model.md index 907c023f9a7..8147e06a70f 100644 --- a/10/umbraco-commerce/installation/licensing-model.md +++ b/10/umbraco-commerce/installation/licensing-model.md @@ -67,6 +67,14 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Commerce": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a licenses dashboard which should display the status of your license. diff --git a/10/umbraco-ui-builder/installation/licensing-model.md b/10/umbraco-ui-builder/installation/licensing-model.md index 0780f37988a..5522e7057f8 100644 --- a/10/umbraco-ui-builder/installation/licensing-model.md +++ b/10/umbraco-ui-builder/installation/licensing-model.md @@ -67,6 +67,14 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_UIBuilder": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/13/umbraco-commerce/installation/the-licensing-model.md b/13/umbraco-commerce/installation/the-licensing-model.md index 7e26653ae39..54978930369 100644 --- a/13/umbraco-commerce/installation/the-licensing-model.md +++ b/13/umbraco-commerce/installation/the-licensing-model.md @@ -67,6 +67,14 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Commerce": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/13/umbraco-deploy/installation/install-configure.md b/13/umbraco-deploy/installation/install-configure.md index 761840a7322..3a483edaaf7 100644 --- a/13/umbraco-deploy/installation/install-configure.md +++ b/13/umbraco-deploy/installation/install-configure.md @@ -292,6 +292,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided when your project is created. Read more about the [Umbraco Deploy licensing model](../installation/the-licensing-model.md). diff --git a/13/umbraco-deploy/installation/the-licensing-model.md b/13/umbraco-deploy/installation/the-licensing-model.md index a7bc4929eb4..7c97044f21c 100644 --- a/13/umbraco-deploy/installation/the-licensing-model.md +++ b/13/umbraco-deploy/installation/the-licensing-model.md @@ -67,6 +67,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided automatically when your project is created. ## Validating the license diff --git a/13/umbraco-engage/installation/licensing.md b/13/umbraco-engage/installation/licensing.md index e0ef52cf946..50952f1e429 100644 --- a/13/umbraco-engage/installation/licensing.md +++ b/13/umbraco-engage/installation/licensing.md @@ -73,6 +73,15 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Engage": "YOUR_LICENSE_KEY" +``` +{% endhint %} + + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/13/umbraco-ui-builder/installation/licensing-model.md b/13/umbraco-ui-builder/installation/licensing-model.md index 9ed659b6d8b..95ba2629a0b 100644 --- a/13/umbraco-ui-builder/installation/licensing-model.md +++ b/13/umbraco-ui-builder/installation/licensing-model.md @@ -67,6 +67,14 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_UIBuilder": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/14/umbraco-commerce/getting-started/the-licensing-model.md b/14/umbraco-commerce/getting-started/the-licensing-model.md index 11efd123f12..ffc4565cf64 100644 --- a/14/umbraco-commerce/getting-started/the-licensing-model.md +++ b/14/umbraco-commerce/getting-started/the-licensing-model.md @@ -69,6 +69,14 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Commerce": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/14/umbraco-deploy/installation/install-configure.md b/14/umbraco-deploy/installation/install-configure.md index 761840a7322..3a483edaaf7 100644 --- a/14/umbraco-deploy/installation/install-configure.md +++ b/14/umbraco-deploy/installation/install-configure.md @@ -292,6 +292,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided when your project is created. Read more about the [Umbraco Deploy licensing model](../installation/the-licensing-model.md). diff --git a/14/umbraco-deploy/installation/the-licensing-model.md b/14/umbraco-deploy/installation/the-licensing-model.md index dc71e989568..4743eac42c5 100644 --- a/14/umbraco-deploy/installation/the-licensing-model.md +++ b/14/umbraco-deploy/installation/the-licensing-model.md @@ -69,6 +69,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided automatically when your project is created. ## Validating the license diff --git a/14/umbraco-ui-builder/installation/licensing-model.md b/14/umbraco-ui-builder/installation/licensing-model.md index ce65f8d70b4..d491bcbe520 100644 --- a/14/umbraco-ui-builder/installation/licensing-model.md +++ b/14/umbraco-ui-builder/installation/licensing-model.md @@ -65,10 +65,19 @@ Once you have received your license code it needs to be installed on your site. "Products": { "Umbraco.UIBuilder": "YOUR_LICENSE_KEY" } - } + } } ``` + +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_UIBuilder": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. diff --git a/15/umbraco-commerce/getting-started/the-licensing-model.md b/15/umbraco-commerce/getting-started/the-licensing-model.md index 63490311b69..b9493e3c6ca 100644 --- a/15/umbraco-commerce/getting-started/the-licensing-model.md +++ b/15/umbraco-commerce/getting-started/the-licensing-model.md @@ -69,7 +69,13 @@ Once you have received your license code it needs to be installed on your site. } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +```json +"Umbraco_Commerce": "YOUR_LICENSE_KEY" +``` +{% endhint %} ### Verify the license installation diff --git a/15/umbraco-deploy/installation/install-configure.md b/15/umbraco-deploy/installation/install-configure.md index 2281798a832..05ef8bec3a8 100644 --- a/15/umbraco-deploy/installation/install-configure.md +++ b/15/umbraco-deploy/installation/install-configure.md @@ -292,6 +292,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided when your project is created. Read more about the [Umbraco Deploy licensing model](../installation/the-licensing-model.md). diff --git a/15/umbraco-deploy/installation/the-licensing-model.md b/15/umbraco-deploy/installation/the-licensing-model.md index 2a945852563..21063d53a5b 100644 --- a/15/umbraco-deploy/installation/the-licensing-model.md +++ b/15/umbraco-deploy/installation/the-licensing-model.md @@ -69,6 +69,14 @@ For example, in `appsettings.json`: } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" +``` +{% endhint %} + Umbraco Cloud projects use a license file placed in the `/umbraco/Licenses` folder that is provided automatically when your project is created. ## Validating the license diff --git a/15/umbraco-ui-builder/installation/licensing-model.md b/15/umbraco-ui-builder/installation/licensing-model.md index ce65f8d70b4..b96f9f31941 100644 --- a/15/umbraco-ui-builder/installation/licensing-model.md +++ b/15/umbraco-ui-builder/installation/licensing-model.md @@ -65,10 +65,18 @@ Once you have received your license code it needs to be installed on your site. "Products": { "Umbraco.UIBuilder": "YOUR_LICENSE_KEY" } - } + } } ``` +{% hint style="info" %} +If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: + +```json +"Umbraco_UIBuilder": "YOUR_LICENSE_KEY" +``` +{% endhint %} + ### Verify the license installation You can verify that your license is successfully installed by logging into your project's backoffice and navigating to the settings section. Here you will see a license dashboard which should display the status of your license. From 42b4e170ddac7fbc4fa277fc679f9a808af91d95 Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Thu, 12 Dec 2024 21:38:53 +0100 Subject: [PATCH 02/17] Linting --- 10/umbraco-commerce/installation/licensing-model.md | 2 +- 10/umbraco-ui-builder/installation/licensing-model.md | 2 +- 13/umbraco-commerce/installation/the-licensing-model.md | 2 +- 13/umbraco-deploy/installation/install-configure.md | 2 +- 13/umbraco-deploy/installation/the-licensing-model.md | 2 +- 13/umbraco-engage/installation/licensing.md | 2 +- 13/umbraco-ui-builder/installation/licensing-model.md | 2 +- 14/umbraco-commerce/getting-started/the-licensing-model.md | 2 +- 14/umbraco-deploy/installation/install-configure.md | 2 +- 14/umbraco-deploy/installation/the-licensing-model.md | 2 +- 14/umbraco-ui-builder/installation/licensing-model.md | 2 +- 15/umbraco-commerce/getting-started/the-licensing-model.md | 2 +- 15/umbraco-deploy/installation/install-configure.md | 2 +- 15/umbraco-deploy/installation/the-licensing-model.md | 2 +- 15/umbraco-ui-builder/installation/licensing-model.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/10/umbraco-commerce/installation/licensing-model.md b/10/umbraco-commerce/installation/licensing-model.md index 8147e06a70f..57a4455e8f2 100644 --- a/10/umbraco-commerce/installation/licensing-model.md +++ b/10/umbraco-commerce/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" diff --git a/10/umbraco-ui-builder/installation/licensing-model.md b/10/umbraco-ui-builder/installation/licensing-model.md index 5522e7057f8..e06a8ca9a55 100644 --- a/10/umbraco-ui-builder/installation/licensing-model.md +++ b/10/umbraco-ui-builder/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" diff --git a/13/umbraco-commerce/installation/the-licensing-model.md b/13/umbraco-commerce/installation/the-licensing-model.md index 54978930369..ac1f89e6e79 100644 --- a/13/umbraco-commerce/installation/the-licensing-model.md +++ b/13/umbraco-commerce/installation/the-licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" diff --git a/13/umbraco-deploy/installation/install-configure.md b/13/umbraco-deploy/installation/install-configure.md index 3a483edaaf7..4b74e4831a7 100644 --- a/13/umbraco-deploy/installation/install-configure.md +++ b/13/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/13/umbraco-deploy/installation/the-licensing-model.md b/13/umbraco-deploy/installation/the-licensing-model.md index 7c97044f21c..5cd5849da04 100644 --- a/13/umbraco-deploy/installation/the-licensing-model.md +++ b/13/umbraco-deploy/installation/the-licensing-model.md @@ -68,7 +68,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/13/umbraco-engage/installation/licensing.md b/13/umbraco-engage/installation/licensing.md index 50952f1e429..aa80b0ec554 100644 --- a/13/umbraco-engage/installation/licensing.md +++ b/13/umbraco-engage/installation/licensing.md @@ -74,7 +74,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Engage": "YOUR_LICENSE_KEY" diff --git a/13/umbraco-ui-builder/installation/licensing-model.md b/13/umbraco-ui-builder/installation/licensing-model.md index 95ba2629a0b..47f7a89e062 100644 --- a/13/umbraco-ui-builder/installation/licensing-model.md +++ b/13/umbraco-ui-builder/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" diff --git a/14/umbraco-commerce/getting-started/the-licensing-model.md b/14/umbraco-commerce/getting-started/the-licensing-model.md index ffc4565cf64..dd0196acbb4 100644 --- a/14/umbraco-commerce/getting-started/the-licensing-model.md +++ b/14/umbraco-commerce/getting-started/the-licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" diff --git a/14/umbraco-deploy/installation/install-configure.md b/14/umbraco-deploy/installation/install-configure.md index 3a483edaaf7..4b74e4831a7 100644 --- a/14/umbraco-deploy/installation/install-configure.md +++ b/14/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/14/umbraco-deploy/installation/the-licensing-model.md b/14/umbraco-deploy/installation/the-licensing-model.md index 4743eac42c5..05237071a56 100644 --- a/14/umbraco-deploy/installation/the-licensing-model.md +++ b/14/umbraco-deploy/installation/the-licensing-model.md @@ -70,7 +70,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/14/umbraco-ui-builder/installation/licensing-model.md b/14/umbraco-ui-builder/installation/licensing-model.md index d491bcbe520..9310037864b 100644 --- a/14/umbraco-ui-builder/installation/licensing-model.md +++ b/14/umbraco-ui-builder/installation/licensing-model.md @@ -71,7 +71,7 @@ Once you have received your license code it needs to be installed on your site. {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" diff --git a/15/umbraco-commerce/getting-started/the-licensing-model.md b/15/umbraco-commerce/getting-started/the-licensing-model.md index b9493e3c6ca..31214737a80 100644 --- a/15/umbraco-commerce/getting-started/the-licensing-model.md +++ b/15/umbraco-commerce/getting-started/the-licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" diff --git a/15/umbraco-deploy/installation/install-configure.md b/15/umbraco-deploy/installation/install-configure.md index 05ef8bec3a8..de50b960a41 100644 --- a/15/umbraco-deploy/installation/install-configure.md +++ b/15/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/15/umbraco-deploy/installation/the-licensing-model.md b/15/umbraco-deploy/installation/the-licensing-model.md index 21063d53a5b..28a6e2ee05b 100644 --- a/15/umbraco-deploy/installation/the-licensing-model.md +++ b/15/umbraco-deploy/installation/the-licensing-model.md @@ -70,7 +70,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" diff --git a/15/umbraco-ui-builder/installation/licensing-model.md b/15/umbraco-ui-builder/installation/licensing-model.md index b96f9f31941..32d0be4a3b7 100644 --- a/15/umbraco-ui-builder/installation/licensing-model.md +++ b/15/umbraco-ui-builder/installation/licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for your configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" From 2ddcc6bc1b8a0ad78d2121d957e66bae4a9d2486 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:24:36 +0100 Subject: [PATCH 03/17] Update licensing-model.md --- 10/umbraco-commerce/installation/licensing-model.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10/umbraco-commerce/installation/licensing-model.md b/10/umbraco-commerce/installation/licensing-model.md index 57a4455e8f2..dea4a4e3f10 100644 --- a/10/umbraco-commerce/installation/licensing-model.md +++ b/10/umbraco-commerce/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" @@ -166,4 +166,4 @@ POST http:///umbraco/licenses/validatedLicense/relay?p A header with a key of `X-AUTH-KEY` and value of the authorization key you have configured should be provided. -This will trigger the same processes that occur when the normal scheduled validation completes ensuring your product is considered licensed. \ No newline at end of file +This will trigger the same processes that occur when the normal scheduled validation completes ensuring your product is considered licensed. From 539c5e8a28b8f059e781bf989784fc0f8763389f Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:25:07 +0100 Subject: [PATCH 04/17] Update licensing-model.md --- 10/umbraco-ui-builder/installation/licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10/umbraco-ui-builder/installation/licensing-model.md b/10/umbraco-ui-builder/installation/licensing-model.md index e06a8ca9a55..e6354300144 100644 --- a/10/umbraco-ui-builder/installation/licensing-model.md +++ b/10/umbraco-ui-builder/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" From 9f9e6cfd748fd5b8170cd4e27a2da0fce4480546 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:25:30 +0100 Subject: [PATCH 05/17] Update the-licensing-model.md --- 13/umbraco-commerce/installation/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-commerce/installation/the-licensing-model.md b/13/umbraco-commerce/installation/the-licensing-model.md index ac1f89e6e79..f1b08d70ba8 100644 --- a/13/umbraco-commerce/installation/the-licensing-model.md +++ b/13/umbraco-commerce/installation/the-licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" From 85273971eee0d627a0543ba7b89e83dc5f3dbf96 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:26:03 +0100 Subject: [PATCH 06/17] Update install-configure.md --- 13/umbraco-deploy/installation/install-configure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-deploy/installation/install-configure.md b/13/umbraco-deploy/installation/install-configure.md index 4b74e4831a7..44ffb978676 100644 --- a/13/umbraco-deploy/installation/install-configure.md +++ b/13/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From 567373fa9656b6d4b22896d7c6a7beb2391239f5 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:26:15 +0100 Subject: [PATCH 07/17] Update the-licensing-model.md --- 13/umbraco-deploy/installation/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-deploy/installation/the-licensing-model.md b/13/umbraco-deploy/installation/the-licensing-model.md index 5cd5849da04..d346004a0ba 100644 --- a/13/umbraco-deploy/installation/the-licensing-model.md +++ b/13/umbraco-deploy/installation/the-licensing-model.md @@ -68,7 +68,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From b6607fe51f91b98564988b8c2ee56de51a6580e7 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:26:38 +0100 Subject: [PATCH 08/17] Update licensing.md --- 13/umbraco-engage/installation/licensing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-engage/installation/licensing.md b/13/umbraco-engage/installation/licensing.md index aa80b0ec554..80cfc93deaa 100644 --- a/13/umbraco-engage/installation/licensing.md +++ b/13/umbraco-engage/installation/licensing.md @@ -74,7 +74,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Engage": "YOUR_LICENSE_KEY" From dfcadd11ee085d5b0f27141e7ebb9b0602b58ddb Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:27:00 +0100 Subject: [PATCH 09/17] Update licensing-model.md --- 13/umbraco-ui-builder/installation/licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/installation/licensing-model.md b/13/umbraco-ui-builder/installation/licensing-model.md index 47f7a89e062..e2847238d24 100644 --- a/13/umbraco-ui-builder/installation/licensing-model.md +++ b/13/umbraco-ui-builder/installation/licensing-model.md @@ -68,7 +68,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" From 15ee8a03da2a749b90cb1dd9d4dec0b8d9bc2874 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:27:38 +0100 Subject: [PATCH 10/17] Update the-licensing-model.md --- 14/umbraco-commerce/getting-started/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-commerce/getting-started/the-licensing-model.md b/14/umbraco-commerce/getting-started/the-licensing-model.md index dd0196acbb4..b232f3c9bf3 100644 --- a/14/umbraco-commerce/getting-started/the-licensing-model.md +++ b/14/umbraco-commerce/getting-started/the-licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" From 41931e541e9b61b7829cc0a83bffb868a63fa801 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:27:55 +0100 Subject: [PATCH 11/17] Update install-configure.md --- 14/umbraco-deploy/installation/install-configure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-deploy/installation/install-configure.md b/14/umbraco-deploy/installation/install-configure.md index 4b74e4831a7..44ffb978676 100644 --- a/14/umbraco-deploy/installation/install-configure.md +++ b/14/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From 6512e18fad862bb3f03ed2e790bca27d0281e9a3 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:28:07 +0100 Subject: [PATCH 12/17] Update the-licensing-model.md --- 14/umbraco-deploy/installation/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-deploy/installation/the-licensing-model.md b/14/umbraco-deploy/installation/the-licensing-model.md index 05237071a56..4bb9d4eb722 100644 --- a/14/umbraco-deploy/installation/the-licensing-model.md +++ b/14/umbraco-deploy/installation/the-licensing-model.md @@ -70,7 +70,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From 3713798f6b2aac574234e2ffea90205c2ff348fc Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:29:07 +0100 Subject: [PATCH 13/17] Update licensing-model.md --- 14/umbraco-ui-builder/installation/licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-ui-builder/installation/licensing-model.md b/14/umbraco-ui-builder/installation/licensing-model.md index 9310037864b..fffd9bdbd0e 100644 --- a/14/umbraco-ui-builder/installation/licensing-model.md +++ b/14/umbraco-ui-builder/installation/licensing-model.md @@ -71,7 +71,7 @@ Once you have received your license code it needs to be installed on your site. {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY" From 153afe3fbbbb3c846bac8423ee86090e289af714 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:29:27 +0100 Subject: [PATCH 14/17] Update the-licensing-model.md --- 15/umbraco-commerce/getting-started/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-commerce/getting-started/the-licensing-model.md b/15/umbraco-commerce/getting-started/the-licensing-model.md index 31214737a80..f7129aa3ac7 100644 --- a/15/umbraco-commerce/getting-started/the-licensing-model.md +++ b/15/umbraco-commerce/getting-started/the-licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Commerce": "YOUR_LICENSE_KEY" From 6ed3239bcd3d7b5a93bd21dff4cf2961a9ad71c5 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:29:52 +0100 Subject: [PATCH 15/17] Update install-configure.md --- 15/umbraco-deploy/installation/install-configure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-deploy/installation/install-configure.md b/15/umbraco-deploy/installation/install-configure.md index de50b960a41..bfa58d5fb08 100644 --- a/15/umbraco-deploy/installation/install-configure.md +++ b/15/umbraco-deploy/installation/install-configure.md @@ -293,7 +293,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From 85da23bd19b9efdd99c18d0171c00a6f1bcd25b3 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:30:09 +0100 Subject: [PATCH 16/17] Update the-licensing-model.md --- 15/umbraco-deploy/installation/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-deploy/installation/the-licensing-model.md b/15/umbraco-deploy/installation/the-licensing-model.md index 28a6e2ee05b..7fe7cc59cfb 100644 --- a/15/umbraco-deploy/installation/the-licensing-model.md +++ b/15/umbraco-deploy/installation/the-licensing-model.md @@ -70,7 +70,7 @@ For example, in `appsettings.json`: ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_Deploy_OnPrem": "YOUR_LICENSE_KEY" From 7147028f6569c5c88855c15fa2f93c5fceb67bae Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 16 Dec 2024 10:30:43 +0100 Subject: [PATCH 17/17] Update licensing-model.md --- 15/umbraco-ui-builder/installation/licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-ui-builder/installation/licensing-model.md b/15/umbraco-ui-builder/installation/licensing-model.md index 32d0be4a3b7..f8218e5589d 100644 --- a/15/umbraco-ui-builder/installation/licensing-model.md +++ b/15/umbraco-ui-builder/installation/licensing-model.md @@ -70,7 +70,7 @@ Once you have received your license code it needs to be installed on your site. ``` {% hint style="info" %} -If using environment variables rather than a JSON file for configuration you may run into issues with the periods used in the product key. If so, an underscore can be used instead: +You might run into issues when using a period in the product name when using environment variables. Use an underscore in the product name instead, to avoid problems. ```json "Umbraco_UIBuilder": "YOUR_LICENSE_KEY"