Skip to main content
added 4 characters in body
Source Link
7ochem
  • 7.6k
  • 16
  • 54
  • 82

Alan, they still go in app/codeapp/code. Make sure you have a registration.phpregistration.php in the modulename folder containing the following:

<?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Namespace_Modulename', __DIR__ ); 

Then run:

php bin/magento setup:upgrade 

Just tested on fresh Magento 2 CE release and works properly.

Alan, they still go in app/code. Make sure you have a registration.php in the modulename folder containing the following:

<?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Namespace_Modulename', __DIR__ ); 

Then run:

php bin/magento setup:upgrade 

Just tested on fresh Magento 2 CE release and works properly.

Alan, they still go in app/code. Make sure you have a registration.php in the modulename folder containing the following:

<?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Namespace_Modulename', __DIR__ ); 

Then run:

php bin/magento setup:upgrade 

Just tested on fresh Magento 2 CE release and works properly.

Source Link
Eirik
  • 2.1k
  • 3
  • 27
  • 37

Alan, they still go in app/code. Make sure you have a registration.php in the modulename folder containing the following:

<?php \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Namespace_Modulename', __DIR__ ); 

Then run:

php bin/magento setup:upgrade 

Just tested on fresh Magento 2 CE release and works properly.