
Originally Posted by
DrByte
1. What's in your /includes/extra_configures/set_time_zone.php file?
2. Login to your Admin. What time does it show in the navigation menu bar?
3. In your Admin, click the "Version" button in the top right of navigation menu bar. Copy and paste all the information shown there down as far as the Zen Cart Database version info.
1.
Code:
<?php
/**
* @package initSystem
* @copyright Copyright 2003-2013 Zen Cart Development Team
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version GIT: $Id: Author: DrByte Sat Nov 2 01:21:28 2013 -0400 New in v1.5.2 $
*/
/*
* Set time zone
*/
if (version_compare(PHP_VERSION, 5.3, '>='))
{
// put your timezone here. Refer to http://www.php.net/manual/en/timezones.php
$TZ = ''; // eg: 'Europe/Oslo'
/**
* MAKE NO CHANGES BELOW THIS LINE
*
* The following will take the timezone you specified above and apply it in your store.
* If you didn't specify one, it will try to use the setting from your server's PHP configuration
*/
if ($TZ == '') {
$TZ = date_default_timezone_get();
}
if ($TZ != '') {
putenv('TZ=' . $TZ);
@date_default_timezone_set($TZ);
}
}
2. Tuesday 19 Aug 2014 06:57:56 PM -0500 GMT
3. PHP Version 5.2.17
Database Patch Level: 1.5.3
date/time support enabled
"Olson" Timezone Database Version 2010.9
Timezone Database internal
Default timezone America/Chicago
Bookmarks