Every order placed from the frontend of our Magento store logs a "Wrong order ID" exception even though all orders seem to be going through with no problems. Orders also seem to take a lot longer to complete than they should. If I place an order from the admin, it's virtually instantaneous and does not log any errors. What's different between frontend and backend orders? Why are these errors being logged every time even though no error really occurred? Any suggestions?

Thanks!

link|improve this question

53% accept rate
I just added some logging to the IpnController.php as well as to the Ipn.php files. It's a bit early to tell, but it seems that this has helped alleviate some (if not all) of the errors. Could this be a timing issue? Perhaps the IPN callback happens before the order is saved in Magento? – BrianVPS Nov 28 '11 at 17:15
feedback

2 Answers

We had this same exception in Magento 1.6.1 showing up in exception.log. The problem for us was that the Order Number and Invoice Numbers were out of sync.

For some reason, when using PayPal Express, it causes the order to not be fully processed and logs the exception: “Wrong Order ID”. The worst part was that it was erratic… sometimes it would fail, other times it was fine.

THE SOLUTION: http://www.magentocommerce.com/magento-connect/fooman-sameorderinvoicenumber.html

Thanks for a great extension from Fooman! Just install their “SameOrderInvoiceNumber” extension, remember to enable it in “Configuration | Sales | Order Numbers” and you’re all set!

Solved the problem for us on Magento 1.6.1… don’t mess with core code!

link|improve this answer
Thank you so much for the detailed answer, but we already have that extension installed and we're still getting this problem. It IS a great extension though :) – BrianVPS Dec 8 '11 at 19:17
feedback

Ok... So my other solution didn't soIve the problem for us either. Spoke too soon. Although this helped it didn't get rid of the error completely.

However, we did eventually crack it. Detailed solution here: http://www.bigdune.net/geek-blog/3-magento/6-magento-paypal-ipn-wrong-order-id.html

I'll tidy up the code a bit when I get a chance, but it's been running on a high transaction volume store for a full day now with not a single error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.