Page 1 of 2 12 LastLast
Results 1 to 10 of 131

Hybrid View

  1. #1
    Join Date
    Oct 2006
    Location
    United Kingdom
    Posts
    48
    Plugin Contributions
    0

    Default Duplicate Orders/Order Confirmation

    Hi All,

    This problem is intermittent, and I have no firm idea why it happens...sometimes (perhaps 5% of the time) I get two order conformation emails (but payment is taken from the customers card only once).

    This can give me –ve stock levels and also screws up my sales report for the month

    Any ideas what may be causing this? I can see no real 'link' between 'single' and 'duplicated' orders. (N.B. All my card transactions are done on-line)

    Running v1.3.7

    Cheers!

    Beer_man.
    Last edited by Beer_man; 9 Jul 2007 at 12:44 PM.

  2. #2
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    I am having the same problem...I have had it happen when they used paypal as a payment and when using the CC module on zen cart.
    Does anyone have a fix?
    Thanks!

  3. #3
    Join Date
    Oct 2006
    Posts
    107
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    I, too, had this happen today for the very first time.

    A duplicate order was created 14 seconds after the original order.

    The duplicate went to the "Pending" category whereas the original went to "Processing".

    The duplicate shows cc as the payment module, but the original shows linkpoint_api (as it should). For the record, I've never used the cc module.

  4. #4
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    Okay, something is going on, now I am getting 3 copies of each order! Does anyone have any idea what could be the problem?

    I am using 1.3.7, lots of add on modules!, cc module, paypal express....note that the last 3 orders where with the cc module (I am not sure if the orders double or triple in PP)

    Now I need to figure out how to fix this without deleting orders, no red flags needed here!

  5. #5
    Join Date
    Oct 2004
    Posts
    43
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    This just happened to us today as well, it produced three order numbers and confirmations(for the same order), but only registered one payment.

    Any ideas?

  6. #6
    Join Date
    Feb 2007
    Posts
    224
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    I have this happened to me on the 2 websites i am managing, i got 3 order numbers and one email confirmation from each (happened once on each site).

    in one site it happened when a customer used Google checkout and the other when local checkout with CC was used.

    Both carts are 1.3.7

    Any Idea?

  7. #7
    Join Date
    Oct 2008
    Posts
    32
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    Yes I've already read your post about this, but am still hoping for a solution that hasn't been found. My email solution fixed the multiples of orders, but it still looks like I'm stuck with the duplicates from the PayPal user issue. There has to be a way to fix this on the zen cart end...? Such as not registering a second order with the same PayPal transaction id or something?

  8. #8
    Join Date
    Jun 2004
    Posts
    3
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    I'm not sure this is the same issue everyone here is having, but I believe I found the solution to this problem for us.

    The distinction seems to be CSS buttons versus image buttons. We use CSS buttons. Apparently, CSS submit buttons don't get a name or id like their image counterparts do. As a result, the submitonce() code doesn't work, since it references an element with the id "btn_submit", which doesn't exist.

    Apparently there is a bug that resulted in leaving this capability out. We've confirmed this bug existed in 1.38a and 1.51. We're using 1.51. I don't know the root of this bug, and why it was never enabled. As a result, I don't know if my fix will cause problems that I haven't seen yet. It seems innocuous enough.
    reference: http://www.zen-cart.com/showthread.p...n_image_submit

    Our fix was to change the function for zen_image_submit() so that CSS buttons inherit the parameters variable just like the image counterparts do.

    In /includes/functions/html_output.php
    Line near 268 reads:
    if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes' && strlen($alt)<30) return zenCssButton($image, $alt, 'submit', $sec_class /*, $parameters = ''*/ );

    Remove the comments and the = '' so it reads:
    if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes' && strlen($alt)<30) return zenCssButton($image, $alt, 'submit', $sec_class , $parameters );

    That's it.

    Again, I don't know repercussions, but a quick run through our site seems OK. And this issue seems to be fixed, for us at least.

  9. #9
    Join Date
    Nov 2012
    Location
    Utrecht, Nederland
    Posts
    41
    Plugin Contributions
    0

    Default Re: Duplicate Orders/Order Confirmation

    Quote Originally Posted by kdoronzio View Post
    I'm not sure this is the same issue everyone here is having, but I believe I found the solution to this problem for us.

    The distinction seems to be CSS buttons versus image buttons. We use CSS buttons. Apparently, CSS submit buttons don't get a name or id like their image counterparts do. As a result, the submitonce() code doesn't work, since it references an element with the id "btn_submit", which doesn't exist.

    Apparently there is a bug that resulted in leaving this capability out. We've confirmed this bug existed in 1.38a and 1.51. We're using 1.51. I don't know the root of this bug, and why it was never enabled. As a result, I don't know if my fix will cause problems that I haven't seen yet. It seems innocuous enough.
    reference: http://www.zen-cart.com/showthread.p...n_image_submit

    Our fix was to change the function for zen_image_submit() so that CSS buttons inherit the parameters variable just like the image counterparts do.

    In /includes/functions/html_output.php
    Line near 268 reads:
    if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes' && strlen($alt)<30) return zenCssButton($image, $alt, 'submit', $sec_class /*, $parameters = ''*/ );

    Remove the comments and the = '' so it reads:
    if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes' && strlen($alt)<30) return zenCssButton($image, $alt, 'submit', $sec_class , $parameters );

    That's it.

    Again, I don't know repercussions, but a quick run through our site seems OK. And this issue seems to be fixed, for us at least.
    Does anyone use this solution? I'm having the same issue and i'm using CSS buttons, i would like to try this but i'm scared something wil backfire :-) No orders is worse then double orders ;-)

  10. #10
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,497
    Plugin Contributions
    88

    Default Re: Duplicate Orders/Order Confirmation

    If you use the CSS3 Buttons (http://www.zen-cart.com/downloads.php?do=file&id=1386) plugin, the current version (1.0.4) contains the submit-button fix you identified.

    P.S. The plugin's functionality (and thus the correction) will be included in Zen Cart v1.5.3.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 3
    Last Post: 27 Apr 2015, 03:47 AM
  2. Duplicate order detection misidentifies orders as duplicates
    By Atash in forum Managing Customers and Orders
    Replies: 3
    Last Post: 21 Jan 2013, 12:37 PM
  3. No order details and duplicate orders??
    By sailsport1 in forum PayPal Website Payments Pro support
    Replies: 8
    Last Post: 6 Jun 2011, 09:06 PM
  4. Duplicate Order Confirmation Emails
    By chrismarie in forum General Questions
    Replies: 2
    Last Post: 15 Mar 2010, 05:02 PM
  5. Replies: 49
    Last Post: 23 Feb 2010, 08:52 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