How to configure Joomla 2.5 error.php timezone Updated on August 16, 2021 by Brad Markle 1 Minutes, 10 Seconds to Read 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: Use your favorite file editor and open for edit libraries/joomla/log/entry.php 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")); Save the file, and you’re done! Joomla’s logs/error.php will now record errors with your server’s current timezone. Share this Article Related Articles How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component Changing Email Settings in Joomla 3.1 Using the Redirect Manager in Joomla 3.1 How to add Bootstrap to a Joomla 3.1 Template How to Use Bootstrap 5.0 Alerts in Joomla 4.0