Administration

Magento Performance Enhancement

Submitted by morf on Wed, 12/09/2009 - 12:00am

Magento Commerce is very robust system which make me happy with its complexness, but on the other hand this robustness implied bad performance. There are few but reliable tips for Magento Performance Enhancements before you should upgrade your server. You can tune Apache web server, PHP engine configuration and modules, MySQL server configuration, and at last you have to setup Magneto to use this tunes.

How to install Magento Commerce

Submitted by morf on Fri, 11/27/2009 - 12:00am

This Post is step by step generic tutorial how to install Magento Commerce.

First of all you should setup your Environment, but if you are installing Magento first time you should check if you fit Magento Commerce System Requirements. In short you need: any os running Apache, PHP, and MySQL. Required PHP modules are: PDO_MySQL, Simplexml, mcrypt, hash, GD, DOM, iconv, SOAP (optional).

How to migrate Magento database

Submitted by morf on Sun, 09/27/2009 - 1:00am

If you have to migrate Magento database from one server to another, or from your local working station to server (etc.), you sure noticed that Magento store informations about base urls in database, so you have to change this data. To fix this you need migrate the database to new server, and then through PHPMyAdmin, or mysql console submit this commands to change new base url and base secure url.

How to enable APC cache in Magento Commerce

Submitted by morf on Thu, 08/27/2009 - 1:00am

Its quite simple. You just have to edit your local configuration file app/etc/local.xml too look like this:

<config>
     <global>
         <cache>
             <prefix>apc</prefix> 
             <!-- this prefix should be unique for each Magento  using this server -->
             <backend>apc</backend>
         </cache>
         <!-- ... another content of your local.xml -->
     </global>
 </config>
Subscribe to Administration