Attention
TYPO3 v11 has reached end-of-life as of October 31st 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Web Server
Apache
Some settings may require adjustment for TYPO3 to operate correctly This will vary depending on the host operating system and the version of Apache that is installed.
Enable mod_rewrite
If mod_rewrite is not enabled, the URL handling will not work properly (specifically the mapping of the URLs TYPO3 uses internally for "speaking URLs") and you might receive 404 (page not found) errors.
Tip
How Apache modules are enabled, depends on your system. Check the documentation for your operating system distribution.
For example, the modules can be enabled by editing your http.conf file, locating the required modules and removing the preceding hash symbol:
#LoadModule expires_module modules/mod_expires.so
#LoadModule rewrite_module modules/mod_rewrite.so
After making any changes to the Apache configuration, the service must be restarted.
Adjust ThreadStackSize on Windows
If you are running TYPO3 on Windows, the extension manager might not render.
This problem is caused by the value of ThreadStackSize, which on Windows systems by default is set too low. To fix this, add the following lines at the end of your httpd.conf file:
<IfModule mpm_winnt_module>
ThreadStackSize 8388608
</IfModule>