Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Known Bugs (and fixes) with v1.5.5 , a, b, c, d, e, f

    This thread is an announcement area where any bugs detected for v1.5.5 will be summarized.


    The first is that the first zip dated 03-17-2016 had a couple errors:

    a) The list of changed files in /docs/changed-files-in-v155.html was incomplete. You can find the updated version at: www.zen-cart.com/docs

    b) The /admin/orders.php file had some incorrect classes in forms.

    c) The zc_install "system inspection" might timeout with a blank screen while inspecting.

    d) The /includes/languages/english/classic/header.php file was missing a new define:
    Code:
     define('SEARCH_DEFAULT_TEXT', 'search here');
    The above issues were fixed in the 03-18-2016 zip.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Known Bugs (and fixes) with v1.5.5

    A new zip 03-21-2016 has been posted, which includes the following fixes:

    a) zc_install when upgrading configure.php file contents, was assuming SSL was enabled, and accidentally enabled the ENABLE_SSL, ENABLE_SSL_CATALOG settings and set the Admin HTTP_SERVER to the old HTTPS_SERVER value. It now reads the old settings more intelligently.

    b) zc_install was running into SQL schema problems if the old data had zero-dates in previous fields in the admin table. It now attempts to fix that data first.

    c) zc_install has now been updated to auto-insert 3 old configuration table entries that sometimes got deleted by old plugins containing incorrect install SQL code.

    d) zc_install was not properly honouring table-name prefixes during some cleanup phases of the db-upgrade process.

    e) The Admin english.php file was updated to add a missing define for TEXT_PRICED_BY_ATTRIBUTES, which was only a problem on the admin screen for copying products between categories (ref: Missing english definition for products_to_categories):

    /admin/includes/languages/english.php:
    Code:
      define('TEXT_PRICED_BY_ATTRIBUTES', 'Priced by Attributes');
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Known Bugs (and fixes) with v1.5.5

    A new zip dated 03-24-2016 has been posted, which includes the following fixes:

    a) Small typos in the changed_files.html list.
    b) Link to zen-cart.com not in admin header menu
    Details for the above at: Add "Support" link back to Admin menu; update typo in changed_files.html

    c) State/Province dropdown is not displayed the same as other fields (Fix is in that same linked thread)

    d) Fix sort-order of shipping/payment modules when sort-orders contain mixed multiple-digits

    e) bug since at least v138: admin/customers.php span tags not closed

    f) bug since at least v152: Uninitialized string offset in function zen_random_name()
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #4
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Known Bugs (and fixes) with v1.5.5

    Symptom: Admin order page shows yellow circle for comments on PayPal Express Checkout orders, when there are no comments.


    ONLY AFFECTS v1.5.5 PayPal Express Checkout


    To fix it, edit /includes/modules/payment/paypalwpp.php, line 1838 and change:
    Code:
    'order_comment'   => urldecode($response['NOTE']) . ' ' . urldecode($response['PAYMENTREQUEST_0_NOTETEXT']),
    to this:
    Code:
    'order_comment'   => (isset($response['NOTE']) || isset($response['PAYMENTREQUEST_0_NOTETEXT']) ? urldecode($response['NOTE']) . ' ' . urldecode($response['PAYMENTREQUEST_0_NOTETEXT']) : ''),
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #5
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Known Bugs (and fixes) with v1.5.5

    Additional CSS fixes for alignment of the State/Country pulldown/input boxes in Responsive Classic:

    /includes/templates/responsive_classic/css/stylesheet.css


    Line 84: Change from
    Code:
    select#country, .wrapperAttribsOptions select, #advSearchDefault select{height:40px;}
    to
    Code:
    select#country, .wrapperAttribsOptions select, #advSearchDefault select, select#stateZone {height:40px;}
    select#country, select#stateZone, #state {margin-left:0;}
    

    Then delete this line 460 :
    Code:
    #loginDefault #country, #createAcctDefault #country{margin-left:0;}
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #6
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Cannot choose shipping/billing address from pre-existing address-book entries

    PROBLEM: Can't choose from other addresses during checkout, without getting a "required field missing" error.

    As posted at https://www.zen-cart.com/showthread.php?t=219842

    If you are having difficulty changing addresses during checkout ... specifically, choosing addresses from previous address-book entries, it could be that the HTML5 field validations are overriding the javascript validations.

    SOLUTION:
    The fix is to change the tpl_checkout_shipping_address_default.php and tpl_checkout_payment_address_default.php pages to have two separate forms, instead of just one.

    For the technically minded, the code changes to make can be viewed here: https://github.com/zencart/zencart/c...b12480cbe001da
    Edit: And this one here too: https://github.com/zencart/zencart/pull/904/files

    Or download them individually from here:
    responsive_classic:
    https://github.com/zencart/zencart/r...ss_default.php
    https://github.com/zencart/zencart/r...ss_default.php

    template_default
    https://github.com/zencart/zencart/r...ss_default.php
    https://github.com/zencart/zencart/r...ss_default.php





    UPDATE: The double-continue button is fixed by making the change shown here: https://github.com/zencart/zencart/pull/904/files
    Last edited by DrByte; 21 Apr 2016 at 06:52 PM. Reason: Added extra link to fix the double-continue button
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Cannot choose shipping/billing address from pre-existing address-book entries

    New 03-29-2016 zip for v155 released today contains:

    a) the fixes listed above:
    - choose from address-book during checkout (but not the fix to the double-continue-buttons)
    - CSS fixes in responsive_classic
    - PayPal Express Checkout empty "comments" showing comment flag

    b) Update to the Admin URL Sanitizer code to allow deeper recursion -- fixes errors happening in Admin plugins such as Edit Orders
    https://github.com/zencart/zencart/pull/886/files

    NOTE: Further changes included in the new v155a release, published on 05/05/2016
    Last edited by DrByte; 5 May 2016 at 06:28 PM. Reason: note new release
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  8. #8
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: fixes for v155

    Symptom: Currency-rate updates using BOC giving division-by-zero error

    Solution: Small code change as posted here: https://github.com/zencart/zencart/pull/911/files
    Described here: https://www.zen-cart.com/showthread....91#post1309991
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: fixes for v155

    NOTE: New v155a release zip published, which fixes the above-posted issues, and several more.
    Details: https://www.zen-cart.com/showthread....72#post1310272
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #10
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: fixes for v155

    The Admin Request Sanitizer infrastructure has been updated to work more amicably with various plugins.

    In your Admin if you're getting & converted into & unexpectedly then you probably need to apply the following updates.

    These changes are applicable to v1.5.0-thru-v1.5.5a:
    a) /admin/includes/classes/AdminRequestSanitizer.php
    b) /admin/includes/init_includes/init_sanitize.php
    c) /admin/includes/auto_loaders/config.adminSanitize.php (this file doesn't require changing if you already have v155a)
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v153 Known Bugs (and fixes) with v1.5.3
    By swguy in forum Upgrading to 1.5.x
    Replies: 9
    Last Post: 18 Oct 2016, 06:17 PM
  2. v151 Known Bugs (and fixes) with v1.5.1
    By DrByte in forum Upgrading to 1.5.x
    Replies: 4
    Last Post: 18 Oct 2016, 06:17 PM
  3. v150 Known Bugs (and fixes) with v1.5.0
    By DrByte in forum Upgrading to 1.5.x
    Replies: 5
    Last Post: 18 Oct 2016, 06:17 PM
  4. v155 Known Bugs (and fixes) with v1.5.5 , a, b, c, d, e, f
    By DrByte in forum Bug Reports
    Replies: 0
    Last Post: 20 Mar 2016, 03:46 AM
  5. Known Bugs (and fixes) with v1.3.9
    By DrByte in forum Upgrading from 1.3.x to 1.3.9
    Replies: 5
    Last Post: 31 Oct 2010, 01:11 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR