diff --git a/src/cloud/cdn/fastly-vcl-badreferer.md b/src/cloud/cdn/fastly-vcl-badreferer.md index b79157d706f..93129c36c62 100644 --- a/src/cloud/cdn/fastly-vcl-badreferer.md +++ b/src/cloud/cdn/fastly-vcl-badreferer.md @@ -73,7 +73,7 @@ Before creating a snippet based on this example, review the values to determine - `name` — Name for the VCL snippet. For this example, we used `block_bad_referrer`. -- `dynamic` — Value 0 indicates a [regular snippet](https://docs.fastly.com/guides/vcl-snippets/using-regular-vcl-snippets) to upload to the versioned VCL for the Fastly configuration. +- `dynamic` — Value 0 indicates a [regular snippet](https://docs.fastly.com/en/guides/using-regular-vcl-snippets) to upload to the versioned VCL for the Fastly configuration. - `priority` — Determines when the VCL snippet runs. The priority is `5` to run this snippet code before any of the default Magento VCL snippets (`magentomodule_*`) assigned a priority of 50. You must set the priority for each custom snippet higher or lower than 50 depending on when you want your snippet to run. Snippets with lower priority numbers run first. diff --git a/src/guides/v2.3/coding-standards/docblock-standard-general.md b/src/guides/v2.3/coding-standards/docblock-standard-general.md index 034d6b2fca2..502df040e2e 100644 --- a/src/guides/v2.3/coding-standards/docblock-standard-general.md +++ b/src/guides/v2.3/coding-standards/docblock-standard-general.md @@ -20,7 +20,7 @@ The goal of this standard is to unify usage of code DocBlocks for all files, not The following is assumed by default: -* Formatting according to the [phpDocumentor](https://docs.phpdoc.org/latest/references/phpdoc/basic-syntax.html#what-is-a-docblock){:target="_blank"} standard +* Formatting according to the [phpDocumentor](https://docs.phpdoc.org/latest/guide/references/phpdoc/basic-syntax.html#basic-syntax) standard * Requirements apply for all files regardless of programming language, but a DocBlock standard for the particular language may override it. ## General principles diff --git a/src/guides/v2.3/config-guide/secy/secy-xframe.md b/src/guides/v2.3/config-guide/secy/secy-xframe.md index f405b1d7618..639a6aa639b 100644 --- a/src/guides/v2.3/config-guide/secy/secy-xframe.md +++ b/src/guides/v2.3/config-guide/secy/secy-xframe.md @@ -57,4 +57,3 @@ Look for the `X-Frame-Options` value in the headers. * [mozilla.org](https://developer.mozilla.org/en-US/docs/HTTP/X-Frame-Options) * [security.stackexchange.com](http://security.stackexchange.com/questions/67889/why-do-browsers-enforce-the-same-origin-security-policy-on-iframes) -* [MSDN blog](http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx) diff --git a/src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md b/src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md index 40118dea672..cbf8b36b33d 100644 --- a/src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md +++ b/src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md @@ -9,7 +9,7 @@ functional_areas: Varnish provides several features that prevent customers from experiencing long delays and timeouts when the Magento server is not functioning properly. These features can be configured in the `default.vcl` file. This topic describes the additions that Magento provides in the VCL (Varnish Configuration Language) file you download from [Magento Admin](https://glossary.magento.com/magento-admin). -See the [Varnish Reference Manual](https://www.varnish-cache.org/docs/4.1/reference/index.html) for details about using the Varnish Configuration Language. +See the [Varnish Reference Manual](https://varnish-cache.org/docs/6.5/reference/index.html) for details about using the Varnish Configuration Language. ## Health check {#health} @@ -31,7 +31,7 @@ Every 5 seconds, this health check calls the `pub/health_check.php` script. This The `health_check.php` script is located in the `pub` directory. If your Magento root directory is `pub`, then be sure to change the path in the `url` parameter from `/pub/health_check.php` to `health_check.php`. -For more information, see the [Varnish health checks](https://varnish-cache.org/docs/4.1/users-guide/vcl-backends.html?highlight=health%20check#health-checks) documentation. +For more information, see the [Varnish health checks](https://varnish-cache.org/docs/6.5/users-guide/vcl-backends.html#health-checks) documentation. ## Grace mode {#grace} @@ -82,8 +82,7 @@ bin/magento cache:flush Saint mode is not part of the main Varnish package. It is a separately-versioned vmod that must be downloaded and installed. As a result, you should re-compile Varnish from source, as described in the following articles: -* [Installing Varnish 5.1](https://varnish-cache.org/docs/5.1/installation/index.html) -* [Installing Varnish 4.1](https://varnish-cache.org/docs/4.1/installation/install.html) (Stable) +* [Installing Varnish 6.5](https://varnish-cache.org/docs/6.5/installation/index.html) After you've recompiled, you can install the Saint mode [module](https://glossary.magento.com/module). In general, follow these steps: diff --git a/src/guides/v2.3/config-guide/varnish/config-varnish-install.md b/src/guides/v2.3/config-guide/varnish/config-varnish-install.md index d7ebcab4ab2..ec9cb84bc26 100644 --- a/src/guides/v2.3/config-guide/varnish/config-varnish-install.md +++ b/src/guides/v2.3/config-guide/varnish/config-varnish-install.md @@ -11,7 +11,7 @@ functional_areas: Installing the Varnish software is beyond the scope of this guide. For more information about installing Varnish, see: -* [installation wiki](http://wiki.mikejung.biz/Varnish) +* [Installation wiki](https://www.varnish-software.com/wiki/start/index.html) * [Varnish installation guides](https://www.varnish-cache.org/docs) * [How to install Varnish (Tecmint)](http://www.tecmint.com/install-varnish-cache-web-accelerator) diff --git a/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md b/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md index 9bbd9cc373f..76e93bc4613 100644 --- a/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md +++ b/src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md @@ -126,7 +126,7 @@ Following is a summary of the process: ``` {:.bs-callout-info} - Style the output text by using ``, ``, or `` tags. See [Symfony](https://symfony.com/doc/master/console/coloring.html){:target="_blank"} documentation for more information about styling. + Style the output text by using ``, ``, or `` tags. See [Symfony](https://symfony.com/doc/current/console/coloring.html){:target="_blank"} documentation for more information about styling. 1. Declare your Command class in `Magento\Framework\Console\CommandListInterface` and configure the command name using dependency injection (`/etc/di.xml`): diff --git a/src/guides/v2.4/test/integration/annotations.md b/src/guides/v2.4/test/integration/annotations.md index c0e11ac80b8..a6a296bc696 100644 --- a/src/guides/v2.4/test/integration/annotations.md +++ b/src/guides/v2.4/test/integration/annotations.md @@ -20,7 +20,7 @@ Data Fixture|`@magentoDataFixture`|`@magentoDataFixture ||`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. You will need to implement a rollback file for changes made here. (e.g. Fixture file my_fixture.php would also require a my_fixture_rollback.php that reverts the original fixture's changed.) Application Area|`@magentoAppArea`|`@magentoAppArea adminhtml|frontend|global`|Configures test environment in the context of specified application area. Enable/Disable Cache|`@magentoCache`|`@magentoCache |all enabled|disabled`|Enables or disables certain cache segment or all of them to prevent isolation problems. -Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922_). +Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode `|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922). Register Components|`@magentoComponentsDir`|`@magentoComponentsDir `|Registers fixture components from specified directory (recursively). Unregisters the components after the test is finished. ### Applying annotations