How to configure Joomla 2.5 error.php timezone

Joomla 2.5 has reached its end of life as for 12/31/2014. Please be advised this may be a security risk to your website. You can view more information about the end of life here.

By default, logs written to Joomla’s logs/error.php file are written in UTC time. There may be instances however when you need for Joomla to log using the server’s timezone and not UTC time. In this tutorial, we’ll show you how to update a Joomla 2.5 core file to adjust the timezone in logs/error.php

Please note: If you are simply trying to adjust the timezone in Joomla 2.5, please see How to change the timezone in Joomla 2.5. This article (the one you’re looking at now) focuses on changing the timezone that Joomla uses when writing to error logs.

To change the timezone in Joomla’s logs/error.php log file:

  1. Use your favorite file editor and open for edit libraries/joomla/log/entry.php
  2. At line 98, you will see the following code:
    // Get the date as a JDate object.
    $this->date = new JDate($date ? $date : 'now');

    Adjust this code so that it looks similar to the following:

    // Get the date as a JDate object.
    // $this->date = new JDate($date ? $date : 'now');
    $this->date = new JDate(date("Y-m-d H:i:s"));
  3. Save the file, and you’re done! Joomla’s logs/error.php will now record errors with your server’s current timezone.

Was this article helpful? Join the conversation!