如何在Joomla模块自定义中禁用缓存

I have created a custom module in joomla. My website has the cache turned on. The problem is my module executes some functions but when cache is turned on, it doesn't work. How can I exclude my module from joomla chache?

The module is a form and its submit action is reloading the page, so when the page is reloaded the module executes again and my save is in the same module.LOL. I know is weird. Then can you say me a way to submit form and save the data in db...?

Look at the "advanced" fieldset for any core module. They all have cache management of one kind or another, some simple, some more complex.

Try this,

you can exclude the module from the Joomla cache using this extension.

For standard method of submitting a form inside module is something like.

Any related component for this module then use that components controller and model for the purpose.

Normally form kind of thing should related with components otherwise this kind of coding may required.

Hope its helps..