Page 26 of 47 FirstFirst ... 16242526272836 ... LastLast
Results 251 to 260 of 461
  1. #251
    Join Date
    Dec 2006
    Posts
    163
    Plugin Contributions
    1

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by DrByte View Post
    ... it seems apparent to me that Wilt doesn't trust it ...
    Seems best to let things be ... especially since no one is complaining about missing zones.

  2. #252
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by lat9 View Post
    ... or ... a squirrel! I don't see the changes in the GitHub repository, yet; will look again in the morning.
    They've just been merged :)
    .

    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. #253
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by Dayo View Post
    True that Post/Zip codes are unique identifiers and so, for countries that use them, you don't really need the zone for shipping. However, there can be tax and other things tied to zones.

    Anyway, was just a thought. Would probably just do it for personal use.
    Quote Originally Posted by Dayo View Post
    Seems best to let things be ... especially since no one is complaining about missing zones.
    Fair enough. Still, thanks for engaging in the discussion and offering to contribute.

    Perhaps preparing a plugin/addon that contains your proposed updates would be another option ... and we could get some community feedback, a crowd-sourced testing of sorts?
    .

    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. #254
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by dw08gm View Post
    Submit buttons readiness for cssButtons

    If this has not already been done, can we have class="button" OR class="submitButton" AND/OR (perhaps) id="submit_Button" OR id="submit_Button" uniformly inserted within all <input type="submit"...> for cssButton readiness.

    includes/modules/pages/checkout_success/header_php.php // class="submitButton" and id="submitbutton"
    includes/modules/pages/payer_auth_auth/header_php.php
    includes/modules/pages/payer_auth_verifier/header_php.php
    includes/modules/payment/authorizenet/authorizenet_admin_notification.php
    includes/templates/template_default/sideboxes/tpl_search.php
    includes/templates/template_default/sideboxes/tpl_search_header.php

    admin/banner_statistics.php
    admin/categories.php
    admin/coupon_restrict.php
    admin/developers_tool_kit.php
    admin/document_general.php
    admin/document_product.php
    admin/includes/modules/newsletters/product_notification.php
    admin/login.php // class="button" and id="btn_submit"
    admin/media_manager.php
    admin/option_name.php
    admin/option_values.php
    admin/password_forgotten.php // class="button"
    admin/product.php
    admin/product_free_shipping.php
    admin/product_music.php
    admin/products_to_categories.php
    Wherever zen_image_submit() is used, the CSS Buttons logic will output appropriate classes for that purpose. Catalog-side that's pretty much universal. Admin-side will get it with upcoming revisions.
    .

    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. #255
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: FEEDBACK ON BETA of v1.5.5

    Was tryng to work on something related to attributes being displayed in the proper sequence and came across something I thought may be mysql server dependent, but on further testing does not appear to be so simple of a .

    Discovery was in includes/modules/attributes.php and may be an issue in other files if in the same format.

    When the sort order for option names is identified in product info as by sort order followed by name, then in the file, the sort order becomes: order by LPAD(popt.products_options_sort_order,11,"0")

    But, when this is run perhaps the first time, then the data is presented as desired in sort order followed by option name order, but if that page is reloaded or the query performed again then the sort order is lost to return to being in the order of the options_id.. I thought that I had posted about this once before a long while back, and maybe the "solution" still stands that nothing need be done, but I thought I would bring it to light again.

    This is fine if a sort order is applied to the option name, but when the sort order is 0 for all option names (or the same) the result is by option name id not by option name.

    I then went to phpmyadmin and entered the exact query as created for the Execute, and got the same result, but the query was also slightly modified to add a space after each piece of information in the LPAD statement. When I then refed that query in, the result came back correctly sequenced (the first time)...

    When I then went back to the attributes.php file and added the same space after each comma, then the attributes were presented in the correct sequence once correctly and then subsequent tries while on the same page were again presented incorrectly...

    So yes it seems odd that it sorts properly one time but then subsequently incorrectly, but also the statement in admin is to sort by sort order and option name or to sort by option name. The sort provided to the query though only enforces either sort order or option name not both.

    So my recommendation after all this is to change the LPAD statement here (and in other places entered the same) to be like:

    Code:
      if (PRODUCTS_OPTIONS_SORT_ORDER == '0') {
                    $options_order_by= ' order by LPAD(popt.products_options_sort_order, 11, "0"), popt.products_options_name';
      } else {
                    $options_order_by= ' order by popt.products_options_name';
      }
    Server OS: Linux 3.2.61-grsec-modsign
    Database: MySQL 5.6.25-log
    HTTP Server: Apache
    PHP Version: 5.6.10 (Zend: 2.6.0)
    PHP Memory Limit: 128M
    PHP File Uploads: On
    Max Size:
    20M
    PHP Safe Mode: Off
    POST Max Size: 20M

    Let me know if there is any specific or other data needed to reproduce this issue...

    Even after accessing tools->Store Manager->Update All Products' Attribute Sort Orders
    to match Option Value Default Sort Orders, the data still appears not in the sequence described by the admin option for sorting option names... Evidence also seen in the attributes controller.. Looks like either the admin description is incorrect, or the code at some point along the way is missing something to provide the response described... I found several other locations where the sort order of option_names was generated the same as provided in includes/modules/attributes.php Would be nice to have the full functionality described by adding the sort of products_options_name instead of removing the text of the option selection. :/
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #256
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,356
    Plugin Contributions
    94

    Default Re: FEEDBACK ON BETA of v1.5.5

    Uh-oh! The admin-level configure.php file for ZC1.5.5 was reworked to discontinue the use of the ENABLE_SSL_ADMIN setting -- unfortunately, no one told
    1. admin/includes/functions/html_output.php (lines 21 and 44)
    2. admin/includes/init_includes/init_general_funcs.php (line 59)
    3. admin/includes/init_includes/init_sessions.php (line 23)



    EDITED BY AJEH:
    also referenced: /includes/functions/html_output.php
    Last edited by Ajeh; 3 Jan 2016 at 07:40 PM. Reason: add missing reference

  7. #257
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by lat9 View Post
    Uh-oh! The admin-level configure.php file for ZC1.5.5 was reworked to discontinue the use of the ENABLE_SSL_ADMIN setting -- unfortunately, no one told
    1. admin/includes/functions/html_output.php (lines 21 and 44)
    2. admin/includes/init_includes/init_general_funcs.php (line 59)
    3. admin/includes/init_includes/init_sessions.php (line 23)



    EDITED BY AJEH:
    also referenced: /includes/functions/html_output.php
    In the interim, the defined_paths.php file defines HTTPS_SERVER so as to minimize the need to hack out a bunch of code. We've deferred the bigger change to v160 where lots of improvements are made to how those defines are used.
    .

    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. #258
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,291
    Plugin Contributions
    125

    Default Re: FEEDBACK ON BETA of v1.5.5

    Small suggestion: admin/customers.php lines 1245, 1265 - "pwreset" should be "pwdreset" to match "pwdresetconfirm" and TEXT_PWDRESET_INTRO (line 306 and 1247-1248).
    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.

  9. #259
    Join Date
    Apr 2009
    Posts
    469
    Plugin Contributions
    2

    Default Re: FEEDBACK ON BETA of v1.5.5

    Hi Finally had a bit of time to start looking at the new version. Sorry if any of these are duplicated I have tried to read through the previous messages.

    On a brand new install I have a few issues/ suggestions
    1) "Main /includes/configure.php file does not exist (isn't readable) or is not writeable" error is clickable but no extra help provided. Same for admin (do you want empty files in place?)
    2) if you copy over the config template file from zc_install errormessage appears "Probems with database connection based on the entries in your current configure.php
    2005:Unknown MySQL server host '%%_DB_SERVER_%%' (2)" this links to itself again.
    3)Database setup. Should you add note to this page to say that you need to create a database before completing the fields. (I know that you should know this but is it better to cover all bases). the errormessage if you don't is "There are some problems. Problems with Database Connection 1049:Unknown database 'zencart'.

    Also you recommend not using root but do not test for its use.

    Hope this is useful if duplicated please ignore.
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  10. #260
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: FEEDBACK ON BETA of v1.5.5

    Quote Originally Posted by brittainmark View Post
    Hi Finally had a bit of time to start looking at the new version.
    Thanks!

    Quote Originally Posted by brittainmark View Post
    1) "Main /includes/configure.php file does not exist (isn't readable) or is not writeable" error is clickable but no extra help provided. Same for admin (do you want empty files in place?)
    Will look into the help text for that.
    Quote Originally Posted by brittainmark View Post
    2) if you copy over the config template file from zc_install errormessage appears "Probems with database connection based on the entries in your current configure.php
    The correct "source" to copy from is the /includes/dist-configure.php file ... which is why it's in that folder.
    Will mention that further in the help text.
    Quote Originally Posted by brittainmark View Post
    3)Database setup. Should you add note to this page to say that you need to create a database before completing the fields.
    Good point.

    These are all mentioned in the /docs/Implementation_Guide-v155.pdf file, but we all know nobody reads written docs despite the time it takes to write them. The on-screen help text can use some updates. Thanks for pointing these out!

    Quote Originally Posted by brittainmark View Post
    Also you recommend not using root but do not test for its use.
    Correct. On live production sites, root should not be used. But on offline localhost dev sites sometimes it's quite desirable, hence we're not preventing that.
    Last edited by wilt; 5 Jan 2016 at 10:38 PM.
    .

    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 26 of 47 FirstFirst ... 16242526272836 ... LastLast

Similar Threads

  1. v155 BETA feedback for Responsive-Classic in v155-beta
    By picaflor-azul in forum Addon Templates
    Replies: 51
    Last Post: 5 Mar 2016, 09:14 PM
  2. Community feedback invited for v155-beta [now closed]
    By DrByte in forum Zen Cart Release Announcements
    Replies: 1
    Last Post: 11 Feb 2016, 01:38 AM
  3. v1.3.9 (Beta now closed. See official release)
    By DrByte in forum Zen Cart Release Announcements
    Replies: 1
    Last Post: 19 Apr 2010, 05:03 PM
  4. Closed Catagory Tree?
    By Camarilladee in forum Basic Configuration
    Replies: 0
    Last Post: 15 Jul 2006, 04:24 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