lisardo
lisardo

Reputation: 1454

is it possible to truncate sys_file_processedfile?

I am stuck with a sys_file_processedfile table with more than 200.000 entries. Is it possible to truncate the table and empty the folder /fileadmin/_processed_ without destroying something?

Thanks!

Upvotes: 1

Views: 697

Answers (1)

jokumer
jokumer

Reputation: 2269

It is possible.

In Admin Tools (Installtool) under Maintenance there is a card named Remove Temporary Assets which you should use to do so.

TYPO3 stores processed files and cached images in a dedicated directory. This directory is likely to grow quickly.

With this action you can delete the files in this folder. Afterwards, you should also clear the cache database tables.

The File Abstraction Layer additionally stores a database record for every file it needs to process. (e.g. image thumbnails). In case you modified some graphics settings (All Configuration [GFX]) and you need all processed files to get regenerated, you can use this tool to remove the "processed" ones.

Upvotes: 1

Related Questions