# Description This is a short fix to use different timezones on different TYPO3 page trees. # How to use ## Backend Setup in your pageTS the time zone you want to use in page tree to fill time, timesec, date and datetime fields in the TYPO3 backend. ```typoscript page.timezone = Europe/Berlin ``` For supported timezones see http://php.net/manual/en/timezones.php. ## Frontend ```typoscript config.timezone = Europe/Berlin ``` # Best Pratice Setup your TYPO3 global timezone setting to UTC. Do not change this in production! ```php $GLOBALS['SYS']['phpTimeZone'] = 'UTC'; ```