One of our content authors recently raised a simple question:
"Why does the Publish Date in Sitecore Pages show UTC instead of my local time?"
Here is what it looks like in SitecoreAI -
It pretty much clarifies that this is an expected behavior and the timezone being shown to user is UTC. But it does not tell what can we do to make it follow local time zone.
Understanding the behavior
Sitecore stores Date and Datetime values in UTC, ensuring consistency across environments and deployments. When these values are displayed in Sitecore Pages, they are rendered using the server's configured timezone, not the individual author's browser or local timezone.
This means:
- ✔️ Data is stored consistently in UTC.
- ✔️ Display is based on the server timezone.
- ❌ There is currently no documented configuration to display dates in each author's local timezone.
If your server timezone needs to be adjusted globally, Sitecore provides the following configuration:
<setting name="ServerTimeZone" value="Central Standard Time"/>If left blank, Sitecore uses the operating system's timezone. Below is full patch file to work with -
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="ServerTimeZone">
<patch:attribute name="value">AUS Eastern Standard Time</patch:attribute>
</setting>
</settings>
</sitecore>
</configuration>
Why UTC is still the right choice
Although authors may initially find UTC confusing, storing timestamps in UTC avoids many common issues:
- No daylight saving time surprises.
- Consistent timestamps across multiple regions.
- Predictable publishing and scheduling.
- Easier troubleshooting between environments.
Its important to ensure that your hosting environment is configured with the correct timezone for your operational needs.
Can authors see their own local time?
Based on the current documentation and support guidance, no documented setting exists to automatically display Publish Dates in each author's local/browser timezone.
If author-local time is a business requirement, the best approach is to discuss it with Sitecore Support as a potential product enhancement or customization.
Final thoughts
This support ticket was a good reminder that UTC storage is by design, and the real configuration point is the server timezone, not the user's browser.
For global teams, understanding this distinction can save a lot of confusion when reviewing publish snapshots and scheduled content.

Comments
Post a Comment