TYPO3 does not cache the page

荒凉一梦 提交于 2019-12-11 07:07:01

问题


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

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?


回答1:


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




回答2:


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.



来源:https://stackoverflow.com/questions/46094965/typo3-does-not-cache-the-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!