Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20
  1. #11
    Join Date
    Sep 2008
    Location
    WA
    Posts
    555
    Plugin Contributions
    0

    Default Re: Discount Coupon Configuration Errors

    So just to be clear, you hit the set ails button when setting up countries and selected "all countries". Now you have even the U.S. . You need to select countries you ship to. Logically though, it should have accepted for all, not none. Try choosing uk as a test.

    (Sorry Linda, didn't see u last post. You east coasters are fast)
    Last edited by lruskauff; 17 Sep 2015 at 03:54 PM.

  2. #12
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Discount Coupon Configuration Errors

    I literally just clicked the buttons and assumed those were acceptable, default settings for a real zone.
    I did not run any sql statements after deleting/recreating the zones last weekend.

    It'll take a few minutes to run the sql statements after making backups. I may have done that during setup 6 years ago but it doesn't look familiar.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  3. #13
    Join Date
    Sep 2008
    Location
    WA
    Posts
    555
    Plugin Contributions
    0

    Default Re: Discount Coupon Configuration Errors

    Go back in then and try selecting a few countries.

  4. #14
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Discount Coupon Configuration Errors

    OK,

    Used the sql for Rest of the World and 50 states + DC. Edited that one discount code and things seem to function as expected.

    That is going to cause a nightmare finding every instance where I have (MIGHT HAVE) currently used USA as a zone and International as a zone.
    Then changing all the USA and International zones.

    I noticed the zones created by the sql statements are yellow ball instead of green ball. Yellow indicates caution to me. Did I need to do something?

    Can I delete the USA and International zones and RENAME the newly created "Rest of the World" to International and the newly created 50 States + DC to USA?

    8am and first pot of coffee gone. Looking like a 2 pot morning.
    Last edited by RixStix; 17 Sep 2015 at 04:16 PM.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

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

    Default Re: Discount Coupon Configuration Errors

    Personally, I would have used:
    To create a Zone Definition for the Rest of the World, excluding the United States, you can use:
    That uses:
    Code:
    INSERT INTO geo_zones (geo_zone_id, geo_zone_name, geo_zone_description, last_modified, date_added) 
    VALUES 
    (40, 'Rest of the World', 'All Countries Except United States', NULL, CURDATE());
    
    INSERT INTO zones_to_geo_zones (zone_country_id, zone_id, geo_zone_id, date_added) 
    SELECT countries_id , 0, 40, CURDATE() 
    FROM countries 
    WHERE countries_iso_code_3 NOT IN ('USA');
    which would have made a Zone Definition with DETAILS that included everything in the World except the US ...

    Then just rename it to International when done ...
    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: v1.5.5]
    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!

  6. #16
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Discount Coupon Configuration Errors

    That's what I was trying to say that I used:

    • Rest of the world excluding the USA
    • 50 states + DC


    So I can
    Delete what was the existing
    • USA
    • International

    Rename the newly created
    • 50 states + DC
    • Rest of the World

    Back to
    • USA
    • International


    And then I will have a USA zone with a yellow dot, International zone with yellow dot, Idaho zone with a green dot.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

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

    Default Re: Discount Coupon Configuration Errors

    Yes, you can rename them once they are created and they should work as they are now defined in the Details correctly ...
    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: v1.5.5]
    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. #18
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Discount Coupon Configuration Errors

    Thank you.

    After using the proper sql statements to generate the USA and International zones which were removed a few days ago while troubleshooting PayPal's inability to proper round numbers,

    The discount coupon codes which have zone restrictions appear to be functioning as expected.

    Sorry to have caused extra work for you. I didn't remember using those sql statements when the cart was created a few years ago and the FAQ didn't appear in my google search. I did try to find a solution before engaging my fingers with the keyboard.

    Is it safe to assume that
    Valid Product List :: --none--
    Valid Categories List :: --none--

    means that there are no restrictions
    not there are no valid products or categories
    Last edited by RixStix; 17 Sep 2015 at 05:55 PM.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

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

    Default Re: Discount Coupon Configuration Errors

    When set to --none-- that means none have been set on the restrictions ...
    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: v1.5.5]
    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. #20
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Discount Coupon Configuration Errors

    Thank you
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Replies: 6
    Last Post: 19 Jun 2011, 07:06 AM
  2. Replies: 18
    Last Post: 12 Mar 2010, 06:37 PM
  3. Ideas/Suggestions for Discount Coupon - How to give a credit and a discount
    By vegascoug in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 0
    Last Post: 15 Nov 2007, 05:40 PM
  4. Discount Coupon AND Group Discount Tax Problem
    By mrkrinkle in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 11
    Last Post: 5 Apr 2007, 12:16 PM
  5. Coupon welcome message showing discount when coupon is expired
    By tracyselena in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 4
    Last Post: 26 Jan 2007, 06:32 PM

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