Hey All!
There is a lot of module build tutorial without all the information and screenshot how to install a module.
So , I make a tutorial how to build basic module for magento 2
http://nirgoldman.com/2015/08/11/magento-2-basic-module-development/
Any tutorial to share will be great for us to learn the new magetno 2 platform
Please give me Kudos and stars or be kind to share knowlage in my website or in your website and share.
Thanks,
Nir Goldman
Hello Goldman,
There is two way to install an extension in magento2 first one using composer and second is manually, here I am explaining second one.
Use the following steps:
Download the package
Copy and paste under the Magento root directory, the folder structure should be like this: magento_root/app/code/Package name/Modulename.
Go to the Magento root directory
Run the command : sudo php bin/magento setup:upgrade
Delete the di, generation and cache from var/
Run the command: sudo php bin/magento setup:di:compile
Run the command: sudo php bin/magento cache:clean
Give the read and execute permission var/di, var/generation, var/cache
Clear the cache
You are done.
This tutorial is good for those who are new and learning to build their own Magento extension.
<< Snipped >>
There are 6 steps for creating a new Magento 2 extension:
You can read the tutorial for more detail on each step.
Good luck!