Hi Sacha,
I think I just replied to you over in MrRat's forums too - but for anyone else passing by this way allow me to clarify a couple of things.
1. That mambot uses an addition template within the APF /templates/ folder. I generally call mine /templates/include/page.template and it is literally only the text %%products_html%%
You will need to create the /templates/include/ folder yourself and also create the new page.template file.
2. The APF Bridge component AND the mambot - which effectively creates a query and passes it off to the component cache the results (the full page returned) in the Joomla cache folder which by default is /cache/
Items are only cached for a relatively short period though - I think 1 hour by default.
From the Mambot's configuration screen:
| Code: |
<param name="templates" type="text" default="include" label="APF Template" description="The name of the APF template to use when 'including' pages. Please ensure that you create the
required template set in a sub-folder under the apf/templates/ folder" />
<param name="cache_folder" type="text" default="cache" label="mosAPF Cache Folder" description="folder under Joomla root in which this bot can store APF data" />
<param name="cache_duration" type="text" default="12" label="Cache duration" description="The number of hours that store content should be cached - default = 12 hours" />
</params>
|
Hope that makes some sense.