1
  1. How to create custom module from scratch in Magento 1.9.x.
  2. which is the directory structure and which are the files i need to create for creating the simple basic custom module.
asked Nov 26, 2019 at 13:34
2
  • 1
    You can use this link: silksoftware.com/magento-module-creator Commented Nov 26, 2019 at 13:53
  • I want to develop custom module without using silk software. Commented Apr 20, 2021 at 9:57

1 Answer 1

1

You should work with app/code/local directory and there build your module.

Create: app/code/local/Vendor_Name/Module_Name/etc/config.xml with

<?xml version="1.0"?>
<config>
<modules>
<Vendor_Name_Module_Name>
<version>0.0.1</version>
</Vendor_Name_Module_Name>
</modules>
</config>

and create app/etc/modules/_.xml with

<?xml version="1.0"?>
<config>
<modules>
<Vendor_Name_Module_Name>
<active>true</active>
<codePool>local</codePool>
</Vendor_Name_Module_Name>
</modules>
</config>

With this 2 files you should be able to see your module in Magento Admin> System Configuration> Advanced> Advanced

answered Nov 26, 2019 at 14:00
2
  • thank you, but i want to create custom module for crud operation in magento back-end one new menu as well as admin can view,edit and delete FAQ's will be created and in front-end i need to create one form for FAQ. Commented Nov 28, 2019 at 9:46
  • 1
    Sure, but you asked about creating simple basic module. I advise you to create a new question with more accurate description :) Commented Nov 28, 2019 at 10:39

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.