DEV Community

Cover image for 5 expert tips to run TYPO3 CMS more sustainably
Simon Köhler
Simon Köhler

Posted on

5 expert tips to run TYPO3 CMS more sustainably

At this point I'll try to show 5 important new tips I've learned myself while working on client projects with the TYPO3 CMS.

1. Create content elements with on-board tools, not with mask or flux

Most content elements can be implemented without extensions like flux or mask. Often even faster and more innovative. It depends on the skills of the developer. Of course, content elements can be clicked together quickly and easily initially, but in the long run, content elements that use the standard tables and functions of the Extbase framework are less maintenance intensive.

2. Use as few third-party extensions as possible

It's tempting to use the extension manager, and install anything to your heart's content. Often you can quickly reach the goal of a project. But TYPO3 is different. After 1-2 major updates at the latest, you usually have a problem if you use too many extensions. At least one of them is no longer developed, or is not compatible. Then it can become very costly with TYPO3.

3. Use a professional theme extension

To be honest, there are hardly any usable themes for TYPO3. But one of them is the Bootstrap Package from Benjamin Kott, the TYPO3 backend developer. I can highly recommend this theme, because it is built in a sustainable way.

If you don't use the Bootstrap Package, make sure you create a theme extension yourself and stick to the TYPO3 standards.

TypoScript configurations or CSS stylesheets should not be in the fileadmin or database.

4. Use only what you really need

The TYPO3 backend generates a lot of data. If you don't set up a TYPO3 installation correctly, it will inexorably generate data and huge log files. Therefore you should deactivate all modules in the backend that you don't need. Also a consideration is to disable the log module, because this occupies massive memory in the database. In addition, there are various settings with which you can prevent the creation of log files.

5. Keep everything up to date

TYPO3 updates are generally considered difficult. But this doesn't have to be, if you keep the 4 previous points. The last point for this article is to update the system regularly.

From experience it becomes really expensive if TYPO3 systems have not been updated for 2-3 years. A jump over several major versions has never really worked, at least not for me.

If you like this one, you might like the others:

Top comments (0)