Enable module in magento 2

You can enable the module by running the below command.

php bin/magento module:enable Vendorname_Modulename

Or other way, you can access the file app/etc/config.php

You will see a long list of modules there, just add your module as well ‘Vendorname_Modulename’ => 1,

Your module should be available now.

Leave a Reply

Your email address will not be published. Required fields are marked *