Skip to content

Commit

Permalink
Merge pull request magento#2208 from magento-devdocs/db_integration_4-5
Browse files Browse the repository at this point in the history
Db integration 4-5
  • Loading branch information
dobooth authored Apr 5, 2021
2 parents 13da3ed + 626fcb6 commit 177a541
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/guides/v2.3/config-guide/db-profiler/db-profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An example follows:

## Step 2: Configure the output

Configure the output in your Magento application boostrap file; this might be `<magento_root>/index.php` or it could be located in a web server virtual host configuration.
Configure the output in your Magento application bootstrap file; this might be `<magento_root>/index.php` or it could be located in a web server virtual host configuration.

The following example displays results in a three-column table:

Expand Down
6 changes: 3 additions & 3 deletions src/guides/v2.3/config-guide/prod/config-reference-envphp.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Learn more about [Magento Modes][magento-modes].

## queue

Message queue releated configurations are available in this node.
Message queue related configurations are available in this node.

```conf
'queue' => [
Expand All @@ -196,7 +196,7 @@ Learn more about Message queue in below link [Message Queue][message-queue]

## resource

Resource configuration settings are avilable in this node.
Resource configuration settings are available in this node.

```conf
'resource' => [
Expand All @@ -208,7 +208,7 @@ Resource configuration settings are avilable in this node.

## session

Magento session related configurations are stoted in the `session` node.
Magento session related configurations are stored in the `session` node.

```conf
'session' => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ When you submit payment information, Magento creates an order and sends an order

{:.bs-callout-info}
Use the `V1/guest-carts/<cartId>/payment-information` endpoint to set the payment information on behalf of a guest. Do not include an authorization token.
You must include the `email` attribute in the payload at the same level as `paymentMethod` and `billing_address`.

**Endpoint:**

Expand Down
2 changes: 1 addition & 1 deletion src/guides/v2.4/config-guide/db-profiler/db-profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ An example follows:

## Step 2: Configure the output

Configure the output in your Magento application boostrap file; this might be `<magento_root>/pub/index.php` or it could be located in a web server virtual host configuration.
Configure the output in your Magento application bootstrap file; this might be `<magento_root>/pub/index.php` or it could be located in a web server virtual host configuration.

The following example displays results in a three-column table:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To enable remote storage with the AWS S3 adapter:
1. Configure Magento to use the private bucket. See [Remote storage options][options] for a full list of parameters.

```bash
bin/magento setup:config:set --remote-storage-driver="aws-s3" --remote-storage-bucket="<bucket-name>" --remote-storage-region="<region-name>" --remote-storage-prefix="<optional-prefix>" --access-key=<optional-access-key> --secret-key=<optional-secret-key> -n
bin/magento setup:config:set --remote-storage-driver="aws-s3" --remote-storage-bucket="<bucket-name>" --remote-storage-region="<region-name>" --remote-storage-prefix="<optional-prefix>" --remote-storage-key=<optional-access-key> --remote-storage-secret=<optional-secret-key> -n
```

## Configure Nginx
Expand Down

0 comments on commit 177a541

Please sign in to comment.