4images Forum & Community

4images Help / Hilfe => Bug Fixes & Patches => Topic started by: V@no on September 17, 2010, 02:52:04 PM

Title: [1.7.8] Support for PHP4
Post by: V@no on September 17, 2010, 02:52:04 PM
If after upgrade or fresh installation you are getting white page or error message:
Quote
Fatal error: call to undefined function: date_default_timezone_set() in ...

The fix is the following:

In includes/functions.php find:
?>

Insert above :above::
if (!function_exists("date_default_timezone_set"))
{
  function date_default_timezone_set($timezone)
  {
    return true;
  }
}

Then open config.php if you find a line with date_default_timezone_set then insert above :above::
if (function_exists("date_default_timezone_set"))