Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions guides/v2.2/cloud/howtos/install-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To verify the extension installed properly, you can check its functionality in t
1. List all enabled modules:

```bash
php bin/magento module:status
bin/magento module:status
```

1. Verify the extension is listed.
Expand All @@ -121,25 +121,25 @@ Trying to enable and disable extensions not following this method can lead to pe
1. List all module.

```bash
php bin/magento module:status
bin/magento module:status
```

1. Enable a module.This command updates the `config.php` file with the enabled status of the module.

```bash
php bin/magento module:enable <module name>
bin/magento module:enable <module name>
```

1. Disable a module. This command updates the `config.php` file with the disable status of the module.

```bash
php bin/magento module:disable <module name>
bin/magento module:disable <module name>
```

1. Verify the status of a module:

```bash
php bin/magento module:status
bin/magento module:status
```

1. Push your updates to the Git branch.
Expand Down