Setup/Activation

If module was installed successfully, the next step is activating it.

There are 3 ways of activating a module:

1. Activating a module through the OXID eShop admin panel

  1. Open OXID eShop administration panel and go to Extensions ‣ Modules.

  2. Choose the module and choose the Activate button.

2. Activating a module via OXID eShop command

To activate module execute the following command:

vendor/bin/oe-console oe:module:activate <module-id>

To activate a module for a sub shop, use the following option:

vendor/bin/oe-console oe:module:activate <module-id> --shop-id <shop-id>

To deactivate a module, execute the following command:

vendor/bin/oe-console oe:module:deactivate <module-id>

Deactivation for a sub shop:

vendor/bin/oe-console oe:module:deactivate <module-id> --shop-id <shop-id>

Note

<module-id> is the unique identifier of a module. Find it in the module’s metadata.php file.

<shop-id> is the unique identifier of a sub shop. Find it in the Admin panel under Master Settings ‣ Core Settings ‣ Main.

3. Activating all configured modules at once

All modules activation usually should be used during deployment phase.

For more information about how to activate all modules at once, see modules configuration and deployment document.