Firstly you need to follow the basic steps that are used for starting a module: Step1: Create a vendor folder inside app/code (app is the core folder of Magento) Folder:- app/code/Pravams (Vendor's name could be any) Step2: Create a module folder inside app/code/Pravams Folder:-app/code/Pravams/Booking Step3: Now inside Booking create a registration.php file. File:-app/code/Pravams/Booking/registration.php <?php \Magento\Framework\ComponentRegistrar::register( … Continue reading MODULE TO CREATE A NEW PRODUCT TYPE IN MAGENTO
Tag: Magento
STEPS TO CREATE SIMPLE HELLOWORLD MODULE IN MAGENTO2
This Helloworld module will create a Controller that will open a page with content from a phtml file Step1: Create a vendor folder inside app/code (app is the core folder in magento) Folder :-app/code/Pravams (Vendor's name could be any) Step 2: Create a module folder inside app/code/Pravams Folder:- app/code/Pravams/Helloworld Step 3: Now inside Helloworld create … Continue reading STEPS TO CREATE SIMPLE HELLOWORLD MODULE IN MAGENTO2
Installing Magento with Docker Compose on Windows
Hi, I have heard and worked with docker several times, but never got a chance to write about the installation. So this time I wanted to share the steps I had taken to install docker on windows and then install Magento 2.4.3 on it. So first I downloaded docker from this link https://docs.docker.com/desktop/windows/install/ and installed … Continue reading Installing Magento with Docker Compose on Windows
How To Install Magento on WAMP server in Windows
Hi Friends, After some time I am back again with my Magento learnings to share with everyone. Recently I got a chance to install Magento on a Windows machine, so I thought of using WAMP instead of XAMPP or MAMP just out of curiosity. However, I would assume the steps should be similar for them … Continue reading How To Install Magento on WAMP server in Windows