Featured Posts

Quickly Add tickets to ActiveCollab: Fast Add I was missing a feature to add tickets to ActiveCollab quickly as much as possible, also with adding assignees, milestones, and projects. Also I needed to add this to Firefox sidebar or run it as stand allone application. Features: add ticket from anywhere (browsersidebar, mobile, popup,...

Read more

Joomla performance improvement: module caching

0

Posted on : 14-08-2009 | By : admin | In : Joomla
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

This trick will dramatically improve  your Joomla performance, if you running Joomla 1.0. It’s very easy to implement. As you now Joomla modules are one of most server CPU requiring applications.

First of all, enable global caching:

Site > Global configuration > Cache  and check Caching to yes.

Now it will cache only some of modules, which has caching enable. But best off all, you can enable caching to any module! To do that you will have:

  • Open any module .xml file. If you open /modules folder, there you will see two module files in most cases: module_name.php and module_name.xml . Open both of them module_name.xml
  • Add right after “<params>”:
  • <param name="cache" type="radio" default="0" label="Enable Cache" description="Select whether to cache the content of this module">
                <option value="0">No</option>
                <option value="1">Yes</option>
            </param>

 

Now go the this module preferences in Joomla Modules administration. Enable Caching to yes.