Magento Compiler
Please note that this extension is provided as is. It is recommended to always backup your installation prior to usage.
| Created | |
| Last Updated | Thu, July 2, 2009 |
| Version | 1.3.2.2 |
| Compatibility | Magento 1.3 |
| Stability | beta |
| Locales available in this package | English (United States) - en_US |
| Downloads | 1926 |
| Community Rating | |
| Categories | Other |
| License Type | Open Software License (OSL) |
| Tags | performance, compiler |
Overview
This module compiles all files of a Magento installation and creates a single include path to increase performance
Compiler module is still in Beta and should NOT be used in a production environment for now. From our early tests this module gave between 25% to 50% better performance depending on the page requested.
To enable this module please add the following lines in index.php:
/**
* Error reporting
*/
error_reporting(E_ALL | E_STRICT);
/**
* Compilation includes configuration file
*/
$compilerConfig = 'includes/config.php';
if (file_exists($compilerConfig)) {
include($compilerConfig);
}
right before:
$mageFilename = 'app/Mage.php';
To test this module after installation go to System->Tools->Compilation
To enable this module please add the following lines in index.php:
/**
* Error reporting
*/
error_reporting(E_ALL | E_STRICT);
/**
* Compilation includes configuration file
*/
$compilerConfig = 'includes/config.php';
if (file_exists($compilerConfig)) {
include($compilerConfig);
}
right before:
$mageFilename = 'app/Mage.php';
To test this module after installation go to System->Tools->Compilation

