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.

For example, the modules can be enabled by editing your http.conf file, locating the required modules and removing the preceding hash symbol:

http.conf
#LoadModule expires_module modules/mod_expires.so
#LoadModule rewrite_module modules/mod_rewrite.so
Copied!

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:

http.conf
<IfModule mpm_winnt_module>
  ThreadStackSize 8388608
</IfModule>
Copied!