I am beginner in typo3, I have done an extension with Kickstarter, and I want to disable cache only for this extension, and not for the other pages of my typo3 website.
How can I do that ?
Thanks a lot.
|
I am beginner in typo3, I have done an extension with Kickstarter, and I want to disable cache only for this extension, and not for the other pages of my typo3 website. How can I do that ? Thanks a lot. |
|||
|
|
|
Also to disable or limit the caching time on a per page basis might be a solution The setting is under pageicon edit -> tab behaviour -> cache settings (the ?no_cache=1 url parameter) Another way would be to clear the cache when the data was changed in a sysfolder / set an autoclear in its ts page config for single pages TCEMAIN.clearCacheCmd = 1,3,5 -- numbers are pid comma seperated TCEMAIN.clearCacheCmd = all -- or clear cache all http://typo3blog.at/blog/artikel/typo3-caching-grundlagen/ http://typo3weblog.de/2008/07/26/tcemainclearcachecmd-statt-clear-cache-button/ |
|||
|
|
you need to pay attention to three locations. First have a look at your ext_localconf.php file. For each plugin (by plugin i mean Frontend Plugin) there is a line similar to this one:
To disable the cache you need to set the last value to zero, like this.
Within the Plugin's PHP file (e.g. pi1/class.tx_yourext_pi1.php) you need to ensure that the following line is either deleted, commented out or changed to "false"
At last, add this line to your main() function (somewhere below the rest):
That should do it. cu Roman |
|||
|
|
Using
Other sources are explanatory. Instead, make sure that your extension is of type
|
|||||
|