Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    cart error Warning Please update your order ...

    First, I appologise for crossposting this question

    When adding items to the shopping cart, I get this error


    Warning Please update your order ...
    Product Name: San Antonio Spurs 3 Time Champion 24KT Gold Coin ... Quantity Units errors -
    You ordered a total of: 1 Min: 0 Units: 0 *Mixed Option Values is ON



    but, all of my settings are:

    Product Qty Minimum: 1
    Product Qty Maximum: 0
    Product Qty Units: 1
    Product Qty Min/Unit Mix: No


    What else could be the problem?
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Warning Please update your order ...

    Check again to be sure ...

    That error looks like someone has 0 for minimum and 0 for units ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Quote Originally Posted by Ajeh View Post
    Check again to be sure ...

    That error looks like someone has 0 for minimum and 0 for units ...
    This error occured after I made a test order. No matter how many of a product I put into the basket, or, how many different products I add, I get the same error.

    I've checked my settings, specifically for the products that I placed into the cart, and the settings are as I stated earlier:


    Product Qty Minimum: 1
    Product Qty Maximum: 0
    Product Qty Units: 1
    Product Qty Min/Unit Mix: No
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  4. #4
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Quote Originally Posted by wtashby View Post
    This error occured after I made a test order. No matter how many of a product I put into the basket, or, how many different products I add, I get the same error.

    I've checked my settings, specifically for the products that I placed into the cart, and the settings are as I stated earlier:


    Product Qty Minimum: 1
    Product Qty Maximum: 0
    Product Qty Units: 1
    Product Qty Min/Unit Mix: No
    The problem is occuring at The Ashby Mint, and I can't seem to find anyway of correcting it. Everything is set properly (or so I believe) in admin, but, In the catalog, it shows

    Min: 0 Units: 0
    *Mixed ON

    for ALL the products.

    Please, someone take a look and see if you can help me.
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  5. #5
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Quote Originally Posted by Ajeh View Post
    Check again to be sure ...

    That error looks like someone has 0 for minimum and 0 for units ...
    Linda,

    I discovered something. ALL of my products, for some reason have the Products Quantity Box Shows: set to No, Do not show Quantity Box.

    This is the cause of my problems. Is there a way to globaly set this to Yes? I have several hundred products and it would take hours to do it manually.

    Thanks
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  6. #6
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Is there a way to globaly change the Products Quantity Box Status from No to Yes? Maybe even an SQL query? With my limited time, it would take a month of sundays to manually change them all.

    Thanks,

    Tom
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  7. #7
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Warning Please update your order ...

    You mean a simple command that you could run in the Tools ... Install SQL Patches ... such as:
    PHP Code:
    UPDATE products SET products_qty_box_status=1
    that might get you back on track and save you hours and hours of valuable time that could be better spent doing something else ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #8
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Quote Originally Posted by Ajeh View Post
    You mean a simple command that you could run in the Tools ... Install SQL Patches ... such as:
    PHP Code:
    UPDATE products SET products_qty_box_status=1
    Nope, That didn't work.

    I'm still getting:

    Warning Please update your order ...
    Product Name: 2006 Los Angeles Angels Team Force Photomint ... Quantity Units errors -
    You ordered a total of: 1 Min: 0 Units: 0 *Mixed Option Values is ON
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Warning Please update your order ...

    Go to phpMyAdmin ...

    Find your database ...

    Browse the products table ...

    Sort on the fields:
    products_quantity_order_min
    products_quantity_order_units

    Do you find a bunch set to 0 ...

    These cannot be 0 they should be at least 1

    If all are set to 1 ... make sure your Admin and Catalog configure.php files are both using the same database information ...

    Otherwise, fix these with:
    PHP Code:
    UPDATE products SET products_quantity_order_min=1
    PHP Code:
    UPDATE products SET products_quantity_order_units=1
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #10
    Join Date
    Feb 2006
    Posts
    656
    Plugin Contributions
    0

    Default Re: Warning Please update your order ...

    Yep

    That did the trick!

    Thanks Linda,

    You are a True Zen Gem
    I Think, Therefore I Zen. I Zen, Therefore, I AM!
    Personalized Flowers!
    Flowertown Speaking Roses
    using version 1.5.7-06232020

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 27 Mar 2015, 08:54 AM
  2. v139h your order is being processed, please wait...
    By swguy in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 24 May 2013, 02:20 PM
  3. WARNING: Security hash problem. Please contact store-owner immediately. Your order ha
    By kjharrison in forum Installing on a Linux/Unix Server
    Replies: 7
    Last Post: 1 Apr 2009, 04:35 PM
  4. ... Quantity Units errors - please update your order
    By w2e in forum General Questions
    Replies: 2
    Last Post: 26 Sep 2008, 12:01 AM
  5. please update your order Units errors -
    By geezer8998 in forum General Questions
    Replies: 8
    Last Post: 20 Sep 2007, 03:08 AM

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