Release Specific Upgrade Considerations

Watch for these changes if you are upgrading and preserving customizations

This document lists things you may wish to take into account as you upgrade. This includes:

  • changes to the database schema or contents which deserve special notice
  • changes to basic template operation

Note: Please be sure to also check Template Updates.

ALL Versions

Zen Cart 1.5.8

  • Zen Cart 1.5.8 still runs on PHP 7.3 and 7.4 but was created for PHP 8+. PHP8 is a major change from PHP7, and many plugins will require work before they are usable. Work with the community and your developer to be sure any modifications you make are ready for PHP 8. See Upgrading plugins to work with 1.5.8/PHP 8.0+.

  • A new file, includes/init_includes/init_non_db_settings.php, was introduced. Defined constants which are not language specific were migrated out of language files into this file.

  • Most “functions” (both admin and non-admin) have been consolidated into files located in /includes/functions/. Some have been merged together. Some changes are listed below. This change was done to eliminate the duplication of identical (or nearly identical) functions between the storefront and admin that was present in prior releases.

  • Some functions have been renamed. Zen Cart 1.5.8a will provide aliases for these functions so that the old names will still work, but will create a deprecation log. (To fix the log, change the function call from using the old name to the new name.)

    Old Name New Name
    zen_draw_products_pull_down zen_draw_pulldown_products
    zen_draw_products_pull_down_attributes zen_draw_pulldown_products_having_attributes
    zen_draw_products_pull_down_categories zen_draw_pulldown_categories_having_products
    zen_draw_products_pull_down_categories_attributes zen_draw_pulldown_categories_having_products_with_attributes
    zen_get_orders_status zen_get_orders_status_pulldown_array

  • Language files were changed to a new format. See Developer Information on Array based Language files for more details. If you are upgrading, you may wish to consider doing only the basic language file customizations rather than port all the changes you had from prior releases. Core language files should be overriden in the new format; plugin language files may use the old or the new file format.

  • Because of the changes to language files, additional steps will need to be taken if you are trying to create global variables. In prior releases, defining a new variable in a language file was sufficient; now you will need to explicitly global it:

    $GLOBALS['some_variable'] = $some_variable;
    
  • The function zen_parse_search_string input parameters have been reversed. Plugins that use this function will require modification.

  • The function zen_get_countries returns different array keys than previously. Admin plugins that use this function may use the new admin function zen_get_countries_for_admin_pulldown.

  • The function zen_cfg_read_only has been added. This means any plugin authors who provided their own version of this function should remove it from their plugin for 1.5.8, or wrap it in if (!function_exists('zen_cfg_read_only')) if support is needed for older versions of Zen Cart.

  • The misspelled notifier NOTIFIY_ORDER_CART_SUBTOTAL_CALCULATE has been deprecated and replaced by NOTIFY_ORDER_CART_SUBTOTAL_CALCULATE. Code that references the misspelled notifier will continue to work (due to the event aliasing feature), but plugins should be updated to use the corrected name.

  • The constant ROBOTS_PAGES_TO_SKIP was previously located in the language file meta_tags.php despite not being language-related.
    It has been moved to its own file in /includes/extra_configures/robots_pages_to_skip.php.
    Plugin pages that do not require indexing (such as Back In Stock subscribe/unsubscribe) should be added to the list in the constant definition.

Zen Cart 1.5.7

  • The configuration constant UPLOAD_FILENAME_EXTENSIONS was removed from the database and replaced with an entry in includes/classes/upload.php. If you have modified this constant from its original setting of jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip you will want to add a custom define (in a new file) in both your /includes/extra_configures/ and YOUR_ADMIN/includes/extra_configures/ directories to set all the allowed extensions you want to support site-wide.

  • Internal changes necessitated removing the following inclusions from admin/includes/auto_loaders/currency_cron.core.php:

    • class.base.php
    • init_file_db_names.php
    • init_database.php

    If you have created additional cron jobs and used this file as a base, please apply the 1.5.7 changes to your custom files.

  • The database field products_description.products_viewed has been deprecated. It will be deleted in a future release. Product view tracking is now done using the table count_product_views.

  • External links have been updated to use rel="noopener" or rel="noreferrer noopener". If you use external links (for social networking, manufacturer sites, product URLs, etc.) you should update your template to adopt this practice.

  • The shopping_cart page no longer uses TEXT_INFORMATION from the shopping_cart.php language file. You will need to move the content of that define to the new html_includes/YOURTEMPLATE/define_shopping_cart.php page.

  • A number of constants which were unused by the core were removed from language files. If you use a plugin which relied on these defines, you should expect a PHP Notice in your /logs folder. To resolve this, define the needed constants in a plugin specific file or an override, as appropriate. Some of the defines removed are DATE_FORMAT_SHORT and DATE_TIME_FORMAT, which some plugins may have used even though core Zen Cart code does not.

  • The Display Logs plugin is now built-in. If you had its files installed in prior versions, remove all those files as part of your upgrade. Then if you want to enable the plugin simply go to Admin > Modules > Plugins.

  • The Admin Login as Customer plugin, which allowed you to login on a customer’s behalf, is now built-in. If you had its files installed in prior versions, remove all those files as part of your upgrade, and configure as described on the Place Order help page.

  • The login form built by includes/templates/template_default/templates/tpl_login_default.php was changed so that the id and class are both loginForm, rather than login, as in prior releases. This is important since a direct reference to loginForm is made in includes/modules/pages/login/on_load_main.js.

Zen Cart 1.5.6

  • The variable $downloads, returned from includes/modules/downloads, changed from a query result to an array. The following template files had to be updated to accommodate this change:

    • tpl_modules_downloads.php
    • tpl_account_history_info_default.php (possibly)

    You will want to adjust any copies of these files in your template to process an array rather than a database query.

  • The table containing the EZ-Pages data (ezpages) was split into two tables, ezpages and ezpages_content. This was done in order to add multi-language capabilities. Accordingly, any files (template overrides or custom files) which reference the ezpages table will need adjustment to account for this division.

  • Date format updates began in this release - see date standardization.

Zen Cart 1.5.5

  • The arguments for the notifier NOTIFY_ORDER_AFTER_SEND_ORDER_EMAIL were changed. This necessitated a code change in the observers watching for it.

  • The responsive_classic template was introduced in this release. If you are coming from an older release with an older template, be sure to check and verify that your template performs properly on mobile devices. If not, you can use Responsive Classic or select another responsive template.

  • Starting in this version, the email css was pulled out of the individual templates into a shared file called email/email_common.css. If you are creating or updating email templates, you should follow this new practice.

  • The phpBB object was removed

Zen Cart 1.5.2

  • The list of pages created by includes/modules/pages/header_php.php changed from a query result to an array. So the template file includes/templates/YOURTEMPLATE/templates/tpl_page_default.php had to be updated to accommodate this change.

Zen Cart 1.5.0

  • The admin menus are no longer built by files ending in .dhtml. Instead, a new database table called admin_pages was introduced. Mods which create their own menu entries must also follow this convention. Guidelines for upgrading plugins to 1.5 include instructions on this step.

Coding Help:

… and when all else fails:




Still have questions? Use the Search box in the upper right, or try the full list of FAQs. If you can't find it there, head over to the Zen Cart support forum and ask there in the appropriate subforum. In your post, please include your Zen Cart and PHP versions, and a link to your site.

Is there an error or omission on this page? Please post to General Questions on the support forum. Or, if you'd like to open a pull request, just review the guidelines and get started. You can even PR right here.
Last modified December 12, 2022 by Scott C Wilson (f663230).