Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Allow clear cache options for BE_USERS TYPO3?

Tags:

caching

typo3

I have created two new users in TYPO3 backend, role not like admin but i want those users to allow cache clear options for "Frontend cache" and "general cache" near "Logout" button in backend.

like image 289
Ashish Patel Avatar asked Nov 17 '16 13:11

Ashish Patel


3 Answers

You need to add this typoscript to their user accounts:

options.clearCache.pages = 1
options.clearCache.system = 1

Source: https://docs.typo3.org/typo3cms/TSconfigReference/singlehtml/#clearcache-pages

like image 195
Jozef Spisiak Avatar answered Oct 18 '22 21:10

Jozef Spisiak


You can set this via UserTSConf for each user or user group:

options.clearCache.all = 1
options.clearCache.system = 1
like image 41
jokumer Avatar answered Oct 18 '22 21:10

jokumer


In 9 LTS it is:

options.clearCache.all = 1
options.clearCache.pages = 1
like image 3
bschauer Avatar answered Oct 18 '22 20:10

bschauer