Reputation: 1
My task is estimate costs of technical implementation of Magento 2 (Open Source version) for my client. To to that I need to find list of modules / features installed by default. Where I can find them ??
Thanks for your help :)
Upvotes: 0
Views: 1799
Reputation: 21
Log in to Magento 2 installation root folder: use SSH via Terminal or Putty.cd;
Run below command to see a full list of enabled or disabled Magento 2 extensions:
php bin/magento module:status
You’ll get the list as follows:
Upvotes: 2
Reputation: 11
Magento 2.3 System > Web Setup Wizard > Module Manager
Magento 2.2 Stores > Configuration > Advanced
Upvotes: 1
Reputation: 11
You can check all installed modules with the bin/magento module:status
CLI command. Also, the list of installed modules can be found in app/etc/config.php
file. Hope this helps.
Upvotes: 0