Page 18 of 188 FirstFirst ... 816171819202868118 ... LastLast
Results 171 to 180 of 1873
  1. #171
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by twi View Post
    problem is reported at super orders. happens to be on the wrong forum. Though it might have something to do with testing the edit order 4.1.1b1. that's why its here.
    Does not as there is no batch forms printing function with Edit Orders.. That said, are you saying you DID NOT get the error before installing the BETA version of Edit Orders??

    BTW, if this is your LIVE store you SHOULD NOT be installing or testing a beta version of any add-on on your LIVE store..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #172
    Join Date
    Feb 2011
    Posts
    21
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    Thank you for your info, over the weekend i did test install on another site, everything is working correctly files have been modified right, it when i import my Mysql database it gets broken, unfortunately editing the database is not my area of expertise, as far as my log file does not report any errors.

  3. #173
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.1 Released

    Quote Originally Posted by gromit1977 View Post
    Thank you for your info, over the weekend i did test install on another site, everything is working correctly files have been modified right, it when i import my Mysql database it gets broken, unfortunately editing the database is not my area of expertise, as far as my log file does not report any errors.
    If everything worked before you imported your database (using Zen Cart's "test" data)... Sounds like something in the data you are importing may be causing some problems...

    Things you can check:
    • How was the data imported? phpMyAdmin restore? Database Backup Manager plugin? Easy Populate? Other?
    • For the product option which is not working: What did you enter in the "options name manager" and "options values manager"?
    • What is entered into the "attributes controller" for the product?
    • You could add some debug code to "Step 3" of the code for adding a product (in edit_orders.php) to output the attributes / options data associated with the product (assigned to the variable $attrs).


    Unfortunately without knowing what data you are using for the product (and what differs in your Zen Cart installation / data from a clean Zen Cart installation) it is going to be difficult to help you further. Specifically we would need an example product containing all the related data from within the following database tables: product, product_description, product_options, product_options_types, product_options_values, products_options_values_to_products_options, and products_attributes.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  4. #174
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    Does not as there is no batch forms printing function with Edit Orders.. That said, are you saying you DID NOT get the error before installing the BETA version of Edit Orders??

    BTW, if this is your LIVE store you SHOULD NOT be installing or testing a beta version of any add-on on your LIVE store..

    Does not as there is no batch forms printing function with Edit Orders.. That said, are you saying you DID NOT get the error before installing the BETA version of Edit Orders?? YES

    solution: SO was simply reinstalled over EO beta & SO and TY. Now the problems mentioned in SO for batch forms works.

    all is done on brand new site for upgrade. not live store.

    ty for the reminder.

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

    Default Re: Edit Orders v4.0 Support Thread

    @lhungil and others- there's a small interoperability with Edit Orders and my discounting mods (Better Together, Quantity Discounts, etc.)

    You'll get a white screen and an error log that looks like this:
    [01-Jun-2013 06:53:00 UTC] PHP Fatal error: Call to undefined function zen_get_tax_rate_from_desc() in /var/www/html/demo_151/includes/modules/order_total/ot_giftwrap_checkout.php on line 184

    The issue is that on the admin side, the function zen_get_tax_rate_from_desc() is not included. So a simple fix would be to pull this function (from includes/functions/functions_taxes) and put it into admin/includes/functions/extra_functions/edit_orders_functions.php.

    The code you need is

    Code:
    // Get tax rate from tax description
     function zen_get_tax_rate_from_desc($tax_desc) {
        global $db;
        $tax_rate = 0.00;
    
        $tax_descriptions = explode(' + ', $tax_desc);
        foreach ($tax_descriptions as $tax_description) {
          $tax_query = "SELECT tax_rate
                        FROM " . TABLE_TAX_RATES . "
                        WHERE tax_description = :taxDescLookup";
          $tax_query = $db->bindVars($tax_query, ':taxDescLookup', $tax_description, 'string'); 
    
          $tax = $db->Execute($tax_query);
    
          $tax_rate += $tax->fields['tax_rate'];
        }
    
        return $tax_rate;
      }
    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.

  6. #176
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.0 Support Thread

    Quote Originally Posted by swguy View Post
    ...
    [01-Jun-2013 06:53:00 UTC] PHP Fatal error: Call to undefined function zen_get_tax_rate_from_desc() in /var/www/html/demo_151/includes/modules/order_total/ot_giftwrap_checkout.php on line 184
    ...
    Thank You for reporting (and posting a quick solution). I'll include a copy of this function in the next release.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  7. #177
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Edit Orders v4.1.1 Release Candidate now available

    The first release candidate for Edit Orders 4.1.1 is now available.
    A few of the changes present in the release candidate include: some bug fixes, interoperability changes, a shiny new install / upgrade / remove process, some feature requests, and new documentation. For a full list of changes please reference the readme included with Edit Orders 4.1.1 RC1.

    Anyone who wishes to tryout the release candidate should send me a PM (private message).
    I will not post Edit Orders 4.1.1 RC1 publicly (for various reasons). If you want to try the release candidate you must send me a PM or email.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  8. #178
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.1.1 Release Candidate now available

    Quote Originally Posted by lhungil View Post
    The first release candidate for Edit Orders 4.1.1 is now available.
    A few of the changes present in the release candidate include: some bug fixes, interoperability changes, a shiny new install / upgrade / remove process, some feature requests, and new documentation. For a full list of changes please reference the readme included with Edit Orders 4.1.1 RC1.

    Anyone who wishes to tryout the release candidate should send me a PM (private message).
    I will not post Edit Orders 4.1.1 RC1 publicly (for various reasons). If you want to try the release candidate you must send me a PM or email.
    You know how to find me.. **LOL**
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #179
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.1.1 Release Candidate now available

    Quote Originally Posted by lhungil View Post
    The first release candidate for Edit Orders 4.1.1 is now available.
    A few of the changes present in the release candidate include: some bug fixes, interoperability changes, a shiny new install / upgrade / remove process, some feature requests, and new documentation. For a full list of changes please reference the readme included with Edit Orders 4.1.1 RC1.

    Anyone who wishes to tryout the release candidate should send me a PM (private message).
    I will not post Edit Orders 4.1.1 RC1 publicly (for various reasons). If you want to try the release candidate you must send me a PM or email.
    and let me add this..
    <rant>

    Folks who are just looking to get their hands on what they think is the latest and greatest version of Edit Orders should simply just wait.. This is supposed to be a serious testing effort which will ultimately benefit the community.. It is not useful for the active maintainers of add-ons to ask for testers only to have folks "participating" who aren't REALLY participating in the testing effort..

    </rant>
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #180
    Join Date
    Nov 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 Support Thread

    Hello

    I have edit orders 4.1 installed on Zen Cart 1.5.1,

    I followed the installation in the exact order stated in the instructions file. I'm having a problem in the adding products.

    When I add a product, or change qty. and click the update button the Sub-Total and Tota are changed to 0.00 after the page refreshes. Even the order in the client site is set to 0.

 

 

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