05-18-2014, 11:08 PM
I get the error shown in the attached image.
Could it be that your php.ini is missing a timezone.
Note that the first thing the application does is set a timezone if none can be obtained from the operating system:
Right at the top of index.php
the error message also states that the timezone could be written incorrectly....
Could it be that your php.ini is missing a timezone.
Note that the first thing the application does is set a timezone if none can be obtained from the operating system:
Right at the top of index.php
Code:
if(!date_default_timezone_get())
{
// Set a fallback timezone if the current php.ini does not contain a default timezone setting.
// If the environment is setup correctly, we won't override the timezone.
date_default_timezone_set("UTC");
}
the error message also states that the timezone could be written incorrectly....
Joe
TSolucio
TSolucio