Duplicated orders, same _ppcp_paypal_order_id
-
Hi, we’re using paypal payments in production since about 1 week (latest update).
We now had one order (of about 600) being duplicated, the customer received all emails twice and contacted us. Both orders were automatically processed by our system (the shipments would’ve been sent if the customer would not have had contacted us). Customer service refunded one of the orders. The second one got refunded erroneosly only seconds after that. The PayPal-Account shows one received order, which is refunded.
The paypal transaction id for original order and duplicate is different.
The paypal order id is the same (_ppcp_paypal_order_id).You can find duplicated orders with this statement:
SELECT meta_value, count(meta_value) as cnt FROM
wp_postmeta
WHERE meta_key LIKE '_ppcp_paypal_order_id' GROUP BY meta_value ORDER BY cnt DESC;There are no fatal errors or memory exhaustion errors.
We’re not able to replicate the problem right now.
Kind regards,
Chris
- The topic ‘Duplicated orders, same _ppcp_paypal_order_id’ is closed to new replies.