
Originally Posted by
david
Many Magento issues are caused by slow performance. The recommended way to speed up Magento's performance is to enable its Compilation function. The performance increase is between 25%-50% on page loads.
You can enable Magento Compilation from your Magento admin panel > System > Tools > Compilation.
1. Install Fooman Speedster
2.Enable Gzip Compression in .htaccess
3. Install APC or Xcache
Essentially, after APC has been installed, you locate the local.xml file in the install. (Mine was here - /home/yoursitename/public_html/app/etc/local.xml
You then add the following code to just below:
HTML Code:
<global>
...
<cache>
<backend>apc</backend>
<prefix>MAGE_</prefix>
</cache>
...
</global>
Hope this will work .
Bookmarks