Page 175 of 188 FirstFirst ... 75125165173174175176177185 ... LastLast
Results 1,741 to 1,750 of 1873
  1. #1741
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    Quote Originally Posted by lat9 View Post
    What's the site's setting for Configuration :: Logging :: Report All Errors (Admin)? If it's set to 'No', try setting it to 'IgnoreDups' and see if a log's generated.
    Yep, that caught it. I installed the newsletter discount plugin, and that's where the problem is. Apparently it's looking to see whether this customer should have a price discount because of being a newsletter subscriber.

    [26-Apr-2022 14:07:51 UTC] Request URI: /Zentest-CHAR-jasPe/index.php?cmd=edit_orders&page=1&oID=9989&action=update_order, IP address: 67.44.192.73
    --> PHP Fatal error: Uncaught Error: Call to undefined function mailchimp_check() in /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php:209
    Stack trace:
    #0 /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php(44): ot_newsletter_discount->is_subscriber()
    #1 /home/newnatur/zentest/includes/classes/order_total.php(65): ot_newsletter_discount->process()
    #2 /home/newnatur/zentest/Zentest-CHAR-jasPe/includes/functions/extra_functions/edit_orders_functions.php(1431): order_total->process()
    #3 /home/newnatur/zentest/Zentest-CHAR-jasPe/includes/modules/edit_orders/eo_update_order_action_processing.php(453): eo_update_database_order_totals(9989)
    #4 /home/newnatur/zentest/Zentest-CHAR-jasPe/edit_orders.php(84): require('/home/newnatur/...')
    #5 /home/newnatur/zentest/Zentest-CHAR-jasPe/index.php(11): require('/home/newnatur/...')
    #6 {main}
    thrown in /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php on line 209.

  2. #1742
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    Quote Originally Posted by HeleneWallis View Post
    Yep, that caught it. I installed the newsletter discount plugin, and that's where the problem is. Apparently it's looking to see whether this customer should have a price discount because of being a newsletter subscriber.

    [26-Apr-2022 14:07:51 UTC] Request URI: /Zentest-CHAR-jasPe/index.php?cmd=edit_orders&page=1&oID=9989&action=update_order, IP address: 67.44.192.73
    --> PHP Fatal error: Uncaught Error: Call to undefined function mailchimp_check() in /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php:209
    Stack trace:
    #0 /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php(44): ot_newsletter_discount->is_subscriber()
    #1 /home/newnatur/zentest/includes/classes/order_total.php(65): ot_newsletter_discount->process()
    #2 /home/newnatur/zentest/Zentest-CHAR-jasPe/includes/functions/extra_functions/edit_orders_functions.php(1431): order_total->process()
    #3 /home/newnatur/zentest/Zentest-CHAR-jasPe/includes/modules/edit_orders/eo_update_order_action_processing.php(453): eo_update_database_order_totals(9989)
    #4 /home/newnatur/zentest/Zentest-CHAR-jasPe/edit_orders.php(84): require('/home/newnatur/...')
    #5 /home/newnatur/zentest/Zentest-CHAR-jasPe/index.php(11): require('/home/newnatur/...')
    #6 {main}
    thrown in /home/newnatur/zentest/includes/modules/order_total/ot_newsletter_discount.php on line 209.
    You'll need to check with the author of that order-total to get a correction.

  3. #1743
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    Yes, already did so.

  4. #1744
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    I've just submitted EO v4.6.2 for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version contains changes associated with the following GitHub issues:

    #212: Tax not added to order for some configuration settings.
    #213: eo_add_product_to_order, correcting strict MySQL fatal error when calculations are 'auto'.
    #214: Using zen_cfg_read_only as the update function for EO's current version.

  5. #1745
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,347
    Plugin Contributions
    94

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    Quote Originally Posted by lat9 View Post
    I've just submitted EO v4.6.2 for the Zen Cart moderators' review; I'll post back here when it's available for download.

    This version contains changes associated with the following GitHub issues:

    #212: Tax not added to order for some configuration settings.
    #213: eo_add_product_to_order, correcting strict MySQL fatal error when calculations are 'auto'.
    #214: Using zen_cfg_read_only as the update function for EO's current version.
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=1513

  6. #1746
    Join Date
    Jul 2012
    Posts
    45
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    Good morning!

    Long-time user, first time poster! I am working on my upgrade to v158 and installed this plugin this morning.
    Code:
    if (function_exists ('zen_get_tax_locations')) {
        trigger_error ('Pre-existing zen_get_tax_locations function detected.', E_USER_ERROR);
        exit ();
    } else {
        function zen_get_tax_locations($store_country = -1, $store_zone = -1) {
            global $order;
            if (STORE_PRODUCT_TAX_BASIS == 'Store') {
                $GLOBALS['customer_country_id'] = STORE_COUNTRY;
                $GLOBALS['customer_zone_id'] = STORE_ZONE;
            } else {
                $_SESSION['customer_id'] = $order->customer['id'];
    I am getting a fatal error since zen_get_tax_locations exists, at least in v158.
    Does anyone have any thoughts for fixing the issue?

    -JC

  7. #1747
    Join Date
    Apr 2009
    Posts
    468
    Plugin Contributions
    2

    Default Re: Edit Orders v4.0 Support Thread - blank screen after order change

    zen_get_tax_locations is in includes>functions>functions_taxes.php.

    I would compare the zen_get_tax_locations in functions_taxes.php with the version in your code. If they are doing the same thing, remove the two lines
    Code:
        trigger_error ('Pre-existing zen_get_tax_locations function detected.', E_USER_ERROR);
        exit ();
    from your code.

    If they are doing different things. The correct solution would be to write an observer to perform the content of your function, the notifier to use is 'ZEN_GET_TAX_LOCATIONS'. You can find information on writing an observer in the docs. You can then remove the whole section from your code.
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  8. #1748
    Join Date
    Mar 2005
    Posts
    58
    Plugin Contributions
    0

    Default 1.5.8 Compatable?

    Will EO function under 1.5.8? I have installed it on our test site and get a white screen when trying to use it.
    ZC 1.5.8 on PHP 7.4.3 clone a template, OPC, bootstrap, sales report, EO, sitemap-XML-4-main

    Code:
    [08-Dec-2022 01:52:39 UTC] Request URI:  /myadmin/index.php?cmd=edit_orders&origin=index&page=1&oID=21820&action=edit,  IP address: 67.173.197.***
    #1  trigger_error() called at [/myadmin/includes/functions/extra_functions/edit_orders_functions.php:298]
    #2   require(/myadmin/includes/functions/extra_functions/edit_orders_functions.php)  called at  [/myadmin/includes/init_includes/init_general_funcs.php:56]
    #3  require_once(/myadmin/includes/init_includes/init_general_funcs.php) called at [/includes/autoload_func.php:40]
    #4  require(/includes/autoload_func.php) called at [/myadmin/includes/application_top.php:42]
    #5  require(/myadmin/includes/application_top.php) called at [/myadmin/edit_orders.php:9]
    #6  require(/myadmin/edit_orders.php) called at [/myadmin/index.php:11]
    --> PHP Fatal error: Pre-existing zen_get_tax_locations function  detected. in  /myadmin/includes/functions/extra_functions/edit_orders_functions.php  on line 298.

  9. #1749
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: 1.5.8 Compatable?

    1.5.8 Users please sit tight - Cindy will need to look at this when she's back in the office; the restructuring of functions in 1.5.8 has caused an issue in Edit Orders. Please disregard everything you may have read in this thread earlier today.
    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.

  10. #1750
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,290
    Plugin Contributions
    125

    Default Re: 1.5.8 Compatable?

    An issue has been raised against her repo.
    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.

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  2. v150 Orders Status History -- Updated By [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 34
    Last Post: 29 Jul 2019, 07:05 PM
  3. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  4. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 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