Book Image

Magento 1.8 Development Cookbook

By : Bart Delvaux, Nurul Ferdous
Book Image

Magento 1.8 Development Cookbook

By: Bart Delvaux, Nurul Ferdous

Overview of this book

<p>Magento is an open source e-commerce platform which has all the functionality to function from small to large online stores. Its architecture makes it possible to extend the functionalities with plugins where a lot of them are shared by the community. This is the reason why the platform is liked by developers and retailers.</p> <p>A practical developer guide packed with recipes that cover all the parts of Magento development. The recipes will start with the simple development exercises and get the more advanced as the book progresses. A good reference for every Magento developer!</p> <p>This book starts with the basics. The first thing is to create a test environment. Next, the architecture, tools, files and other basics are described to make you ready for the real work.</p> <p>The real work starts with the simple things like theming and catalog configuration. When you are familiar with this, we will move on to more complex features such as module and database development. When you have survived this, we will move on to the last part of making a shop ready for launch: performance optimization and testing. This book will guide you through all the development phases of Magento, covering the most common pitfalls through its recipes.</p>
Table of Contents (19 chapters)
Magento 1.8 Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Optimizing the Apache web server


Magento recommends the use of Apache web server when you run a Magento website. There are some other web servers on the market, such as Nginx, but initially Magento was optimized to run on Apache.

The performance of the web server depends mostly on the hardware on which the server is running. Network card, RAM, disk, OS, and CPU are important hardware to think about when you are choosing a server.

How to do it...

  1. The first thing to think about is the OS on which the web server will run. It is highly recommended to use a Linux distribution. In the recipes of this book, we used an Ubuntu server (a Debian-based Linux distribution).

    Tip

    Don't use a Windows server to run Magento. It will work but it is less efficient and can lead to issues with file permissions, code, and more.

  2. Update the OS to the latest stable version because the update software is faster and safer. Use Apache2 instead of the Apache1 series. Apache2 uses fewer CPU resources while delivering static...