0

I am getting suddenly a strange error. Every order I am receiving is making duplicates for the same customer looks like it is the same order. What can be an issue. Its very wired to delete the duplicates again and again, the first one went through the payment gateways and the duplicates are only displaying. The duplicates are created again and again for after a small time, looks like a loop is running after a fixed time.

Edit:Another thing is all the orders are duplicting, not the last one and the time is not fixed, sometimes after a mint or 2 mints or 3 mints.

Steve Robbins
  • 2,579
  • 2
  • 28
  • 44
Tariq Aziz
  • 289
  • 9
  • 22
  • Does it happen with the different payment methods or all with the same? – Tim Bezhashvyly May 21 '13 at 20:32
  • currently seen for some payment methods because the customers are using that, but looks like duplicating for all. because we have disable one by one and still its duplicating. – Tariq Aziz May 21 '13 at 20:37
  • I never heard of this issue. You can hook into the order save method and just log the request and everything of the environment to know when it happens. The next step is to check, where it happens. And as always: reporduction is the key. – Fabian Blechschmidt May 21 '13 at 20:53
  • Debug debug debug - follow the instructions here (specifically about disabling modules), testing your order creation between each change. – Ben Lessani May 21 '13 at 21:50
  • 1
    Test the speed to see how long it takes for the order to place once the user clicks the final order button. On very slow sites it can be the user re-clicking because it is taking so long to process. – Jasuten May 22 '13 at 06:40
  • Find workaround in http://magento.stackexchange.com/questions/48607/same-customer-places-duplicate-order/48799 – Aleksey Razbakov Dec 19 '14 at 17:44

1 Answers1

1

I have contacted our server administrator and one of our port is closed and email was not sending. As we opened the port the duplicates stops. So as the port is closed the code is trying to create the order again and again when the code fails on email function.

Tariq Aziz
  • 289
  • 9
  • 22