Felix
Felix

Reputation: 5619

TYPO3 does not cache the page

My TYPO3 6.2.31 page has everywhere enabled caching ... But when I call the Page and look in admin panel ..

enter image description here

enter image description here

My typoscript looks like this:

config {
doctype = html5 
renderCharset = utf-8
metaCharset = utf-8
prefixLocalAnchors = all
simulateStaticDocuments = 0
tx_realurl_enable = 1
absRefPrefix = /  
  #CACHE AND INDEX
no_cache = 0
no_search = 0
index_enable = 1
index_externals = 1

what could be the problem for not caching my site?

Upvotes: 1

Views: 727

Answers (2)

Paul Beck
Paul Beck

Reputation: 2685

prefixLocalAnchors causes the page to be not cached! Set prefixLocalAnchors = 0

Upvotes: 1

Georg Ringer
Georg Ringer

Reputation: 7939

There are a lot of things which incluence if a page is cached or not:

  • an extension
  • TS like page.config.no_cache = 1
  • disable caching in the page properties

and I guess some more as well.

Upvotes: 0

Related Questions