Magento – Enabling a module for the first time via admin panel

adminbin-magentodevelopmentmagento2module

I have created a very simple module. I can see it listed as disabled when I check via cli php bin/magento module:status, but when I go to admin panel Advanced -> Advanced I do not see it listed there. How should I enable the module? (other than cli, via admin panel)

Best Answer

please run command,

php bin/magento setup:upgrade

After Run above command,do deployment,

php bin/magento setup:static-content:deploy

Remove var folder content from root.

Now you can check your changes in adminpanel.

Related Topic