1

I Created an Extension by using the Extension Builder, created a model, checked all standard actions and aggregated it to root. I installed the extension. I also selected a storage place. I included the static template, created a new page and put the frontend-plugin in and So as far as I know very standard.

And when I started testing, it usually doesn't update old values if i create edit or delete them. Then I check the database, there is everything just fine and as i expect things to be. What always helps is clearing the frontend Cache and reload.

So how can I tell TYPO3 to not Cache this?

I am using TYPO3 6.2.

2 Answers 2

4

config.no_cache disables all caches, which makes your site really slow.

It's better to mark the controller actions as uncached when registering them in ext_localconf.php:

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
    'Vendor.Extname',
    'Faq',
    array('Faq' => 'index,detail'),//available
    array('Faq' => 'index')//uncached
);
Sign up to request clarification or add additional context in comments.

Comments

1
config.no_cache 

For all caches

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.