I have one module working fine on one Magento Instance(installation), but If I am installing the same module on another Magento instance on the same server, the view in front-end is not showing.
I have checked almost everything, but couldn’t trace the issue.
The process I followed for installation on the second instance of Mangento is like:
php bin/magento module:enable module_name php bin/magento setup:upgrade php bin/magento cache:clean error_reporting(E_ALL);// in app/bootstrap.php ini_set('display_errors', 1); //in app/bootstrap.ph
Other points
- Cleaning static cache and all other cache in the back-end.
- The admin config for the module to enable the module is showing fine and it is enabled.
- The Magento Deploy mode is set to Developer
since the module is working on one instance and not working on another instance of Magento, I am scratching my head what else I may be missing.
Thanks.