Topic: Where is time zone setting in 2.0.2?

I have searched all the topics I can find that mention time and time zone, and the only answer I can find must be for a prior version, as the files it says to change time zone setting in do not contain the string "zone".

It's now set to America/Chicago and I want it America/New York.

Re: Where is time zone setting in 2.0.2?

You can change timezone in PHP configurations using the default.timezone parameter.
Or you can include the following code into the core/init.php file before uploading the configuration (cn_load_config):

//init timezone
$timezone=ini_get('default.timezone');
if(!$timezone||$timezone=='')
{
    date_default_timezone_set('America/New_York');
}
Best regards,
CN Support team