👴 Careful You’re reading an old article ! Some links might be broken and content may be outdated

When I started working with Magento 1, I was frightened by the quantity of files and modules. The clients I worked for had several modules and a lot of things needed to be refactored, both projects were on Magento 1.

Here are some « baby steps » I followed when I began with Magento 1. I would like to remember them when I will get started on a Magento 2 project 🙂

Identify the business rules

Each client has its own challenges, one client might have to do something an other client won’t have to do. I once worked for a client who had 3 stocks options: « In stock », « Out of stock », « Likely to be out of stock » which was unthinkable for my last client 😀

The more you know about the business of your client, the more you will deliver features that fits his expectations.

Setup a way to debug efficiently

It takes a little bit of time to setup Xdebug but it is – oh sooo – valuable. With XDebug, you will be able to debug any line you want in your Magento project by simply adding a breakpoint. You will be able to view the content of your variables, the stack…

Setup Xdebug on your Magento project and install the xdebug extension on Chrome. For front-end development, I used to love Firebug but now, I’m using the native console of Chrome because this is my favorite browser 🙂

Identify the controllers / models behind basic actions

It’s important to understand how are these actions handled in the code logic to be able to develop features around these actions. Besides the code logic, visualizing where is the data stored in the database (which tables, how to get the data quickly with MySQL queries for example) can be useful for quick business reports generation.

Basic views

  • Product view (images, variants, product description)
  • Cart view
  • Checkout view
  • Orders view

Tricky e-commerce logic

  • The logic of promotions (how is a discount applied to a product?)
  • Logic of cart rules (how is a discount applied to a shopping cart?)

Develop a « Hello World » module

It will make you understand the « frightening » architecture through a very simple example for both front-end and back-end. For example, you can develop a module that adds a « Hello world » on product pages.

Understand the caching process

Last but not least, maybe one of the most difficult points to me: fully understand how a page is cached with Magento. Time speed is critical for your website conversion, the browsing experience must be as fast as possible. It’s however tricky for e-commerce because stocks can be evolving quickly: how can you cache data that can be modified frequently? Here are some answers you will need to find the answer to :

  • What are the sections cached in the website and how are they cached ?
  • Is the project using a reverse proxy ? (Varnish)
  • Is there a CDN for static files ? (images, CSS, Javascripts)

Once you will understand the caching process, you will be able to optimize the pagespeed and understand some bugs you will face.

Create a list of technical references

Magento has an extremely large community, which is awesome. I used to try to remember the most active people. They can be « trusted » even though you always have to test / fully understand the solutions you find online of course. I learned a lot about Magento 1 through reading the blogs / responses on StackOverflow of the people from this list

If you have a tip to give on how to get started with Magento 2, don’t hesitate to leave a comment, I will be happy to read !

Extra links :

Magento the right way – A Cheatsheet about Magento’s best practices https://magentotherightway.com/

Magento Compiler Mode http://alanstorm.com/magento_compiler_path

http://info2.magento.com/rs/magentosoftware/images/Conquer_the_5_Most_Common_Magento_Coding_Issues_to_Optimize_Your_Site_for_Performance.pdf

Making Magento flying like a rocket! (A set of valuable tips for developers) from Ivan Chepurnyi