Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 86a73ca

Browse files
authored
Merge pull request #2671 from magento-devdocs/del-payment-fix
PAY-2057: Small correction in the install payment services topic
2 parents cacf320 + 38bebaf commit 86a73ca

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/payment-services/configure-payments.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Payment Services combines order data exported from Magento Open Source and Adobe
1111

1212
See [our user guide]({{ site.user_guide_url }}/payment-services/order-payment-status.html#data-used-in-the-report) to learn about the data used in Payment Services reporting.
1313

14+
### Configure cron on Magento Open Source
15+
16+
If you want to use a `BY SCHEDULE` index mode on Magento Open Source, you must configure cron. See [Configure and run cron]({{ site.baseurl }}{{ site.gdeurl }}/config-guide/cli/config-cli-subcommands-cron.html).
17+
1418
### Set indexers
1519

1620
Order data is exported and persisted in the Payment Service, using one of two index modes---`ON SAVE` (default) or `BY SCHEDULE` (recommended).

src/payment-services/install-payments.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ There are two ways to install this extension---for [{{site.data.var.ece}}](#mage
1111

1212
## Update minimum-stability setting
1313

14-
{:.bs-callout-tip}
15-
This step is only required during our Early Access Program (EAP) and will not be needed for General Availability (GA).
16-
1714
Before installing the extension, you must change the `minimum-stability` requirement to `RC` (release candidate) in your `composer.json` file. You can use an IDE or your favorite text editor (like Visual Studio Code or Sublime Text).
1815

1916
In your `composer.json` file, change `"minimum-stability": "stable"` to `"minimum-stability": "RC"`.
@@ -38,7 +35,7 @@ This method is used for installing the Payment Services extension for a Commerce
3835
composer update
3936
```
4037

41-
The `composer update` command will update all dependencies. If you do not want to update all dependencies at the same time, use this command instead: `composer require magento/commerce-payments`.
38+
The `composer update` command will update all dependencies. If you do not want to update all dependencies at the same time, use this command instead: `composer require magento/payment-services`.
4239

4340
1. Commit and push your changes.
4441

@@ -58,7 +55,7 @@ This method is used for installing the Payment Services extension for an On-prem
5855
composer update
5956
```
6057

61-
The `composer update` command will update all dependencies. If you do not want to update all dependencies at the same time, use this command instead: `composer require magento/commerce-payments`.
58+
The `composer update` command will update all dependencies. If you do not want to update all dependencies at the same time, use this command instead: `composer require magento/payment-services`.
6259

6360
1. Upgrade {{site.data.var.ee}}:
6461

@@ -69,7 +66,7 @@ This method is used for installing the Payment Services extension for an On-prem
6966
1. Clear the cache:
7067

7168
```bash
72-
bin/magento cache:clear
69+
bin/magento cache:clean
7370
```
7471

7572
1. Commit changes.

0 commit comments

Comments
 (0)