Have the following mods been fully incorporated in 152
search_configuration_keys
Fix_Cache_key utility
Keepalive Timer
time zone offset
But not COWOA.
Are there any others I may have missed.
Could a list of newly incorporated mods be appended to docs/whatsnew_1.5.2.html
Thanks
Last edited by dw08gm; 29 Nov 2013 at 06:04 AM.
I noticed that /includes/functions/functions_email.php now interprets a "Gmail" transport method, but that transport method is not one of the radio buttons in Configuration->Email Options->Email Transport Method. Is this by design?
In /includes/templates/template_default/templates/tpl_account_default.php, shouldn't the constant used in this fragment:
be SHOW_NEWSLETTER_UNSUBSCRIBE_LINK instead of ACCOUNT_NEWSLETTER_STATUS? The latter is the default setting for a customer's choice of newsletter sign-up (or not).Code:<?php if ((int)ACCOUNT_NEWSLETTER_STATUS > 0 or CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS !='0') { ?> <h2><?php echo EMAIL_NOTIFICATIONS_TITLE; ?></h2> <ul id="myAccountNotify" class="list"> <?php if ((int)ACCOUNT_NEWSLETTER_STATUS > 0) { ?> <li><?php echo ' <a href="' . zen_href_link(FILENAME_ACCOUNT_NEWSLETTERS, '', 'SSL') . '">' . EMAIL_NOTIFICATIONS_NEWSLETTERS . '</a>'; ?></li> <?php } //endif newsletter unsubscribe ?>
I am experiencing a redirect loop going to admin on a localhost installation on Apache/Fedora 16. Haven't tracked it down yet.
Works like a charm on MAMP.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Very happy to see upgrade to mysqli functions, one of the reasons I'd recently been considering other options to Zencart was the mysql reliance. I'm no expert at programming so I don't know the full implications in using mysqli over mysql functions, just that php sites always recommend using mysqli now and as a developing programmer I think it wouldn't be very helpful using deprecated functions all the time. Keep up the good work!
Was there a (good) reason why the selectable-countries change introduced in v1.5.2 chose to call the enable/disable field status instead of countries_active as it is in the Selectable Countries plugin? The only reason I ask is that it's going to make the upgrade to v1.5.2 more difficult for current users of the plugin since they'll need to re-disable those countries that they don't want.
I just started a test install on my 1and1 host and was presented with:
Is the date.timezone setting really this important?Code:ERROR: date.timezone not set in php.ini. Please contact your hosting company to set the timezone in the server PHP configuration before continuing.
Here's the date information that's set in a "sibling" test site running v1.5.1:
Code:date date/time support enabled "Olson" Timezone Database Version 2013.6 Timezone Database internal Default timezone America/New_York Directive Local Value Master Value date.default_latitude 31.7667 31.7667 date.default_longitude 35.2333 35.2333 date.sunrise_zenith 90.583333 90.583333 date.sunset_zenith 90.583333 90.583333 date.timezone no value no value
Last edited by lat9; 6 Dec 2013 at 02:11 PM. Reason: Include PHP date settings
FWIW, I was able to work around this restriction by changing /zc_install/includes/application_top.php (line 52) to comment out the lines associated with the restriction:
Code:/** * Timezone problem detection */ //if (PHP_VERSION >= '5.3' && ini_get('date.timezone') == '') //{ // die('ERROR: date.timezone not set in php.ini. Please contact your hosting company to set the timezone in the server PHP configuration before continuing.'); /*} else*/ if (PHP_VERSION >= '5.1') { $baseTZ = date_default_timezone_get(); date_default_timezone_set($baseTZ); unset($baseTZ); }