My Magento Verison is - 1.4.1.1

I am having two problems:

1) When I am going through various steps of Onepage checkout (registration, billing, shipping, and payment tabs), sometimes during this process I am redirected to the cart page. There is no error, no exception, no report gets generated in var/report. I dont know how to debug it. Aren’t there any logs I can look for?

2) In same Onepage Checkout process after clicking on place the order (last step) , some times it redirects to the cart page, sends an email saying that the order failed with the message:

Quote totals must be collected before this operation.

To resolve it I commented this line in prepareRecurringPaymentProfiles in the file magento/app/code/core/Mage/Sales/Model/Quote.php, which solved the problem:

throw new Exception(’Quote totals must be collected before this operation.’);

I dont know if these 2 problems are related or not. But I am not having the 2nd problem now but having 1st one quite frequent. What could be the reason and how to resolve it?

further update-I checked the firebug trace, It is 500 internal server error which comes sometimes in any of the step in one page checkout. I was able to dig down into savebillingaction, saveshippingaction functions in onepagecontroller.php and found that error comes when $this->getRequest()->isPost() is blank , If it is 1 then it goes ahead, and goes to the next step else it redirects to cart, No I dont know why this is not 1 or is it because ajax is not able to send post data but I checked XHR request, Ajax send the post data every time (checked with firebug extension). Can Someone tell me What I could do next to troubleshoot. Where I can look for these Ajax Calls? Shipping.phtml (any step.phtml) has JS at the bottom , How does it call OnePagecontroller saveshippingaction function ?

link|improve this question

60% accept rate
check if it happens with specific payment method and if it does then start to debug this payment method controller. – Anton S Apr 4 '11 at 11:31
You might found usefull to know, that i worked on a version for 11 months, without this happening, and one day it starts (i didnt change anything in back or front end, and i didnt chage any files.) the only two issues that changed were: the site passed the 1000 orders, and it was a resent upgrade for internet explorer, and i only have 4 orders with this problem and all came for the new explorer, maybe its fault. – Alex Sep 12 '11 at 22:07
Just had this issue with Cybersource payment method after switching servers. Only change was from php 5.2 to 5.3. Ended up needing to adjust 1 line in the Payment methods code to fix. The issue was that an error was being thrown but could not be logged for what ever reason. – Mike D Dec 7 '11 at 21:45
feedback

1 Answer

Firstly, commenting an error message is almost never the way to solve a problem, as you are just covering up some issue that may have severe consequences for your system.

Nailing down errors like this can be hard, but there are a few places to look first:

  1. Did you install this system on a lower version and then upgrade? If so, how?
  2. Are you using any extensions that modify the sales/checkout portion of the site?
  3. Have you overridden any of the models concerned with this part of the site?
  4. Have you changed the JS or HTML for the checkout?

If one of those is the case, you should review those changes for bugs. If not, try turning on the default theme for the site and checking out again. If the bug disappears, there is a problem with the theme that you are using. If it still appears, the problem is in code.

In that latter case, use Firebug to verify that the offending page requests result in Magento sending back "redirect" commands to the frontend. If that isn't the case, it may be some kind of JS error, but more likely you are ending up with invalid data in the system somewhere that causes Magento to choke during checkout.

Also (just thought of this, haven't tried it), try the multi-address checkout. As I recall, it uses regular page posts, and may even have more useful messaging than the OnePage checkout. Please edit your post with your findings from the above so that we can help more if that doesn't do it.

Hope that helps!

Thanks, Joe

link|improve this answer
thanks joe, I didnt upgrade or install any extension. Used firebug to track the error. I kept editing information in all steps and was able to reproduce the error few times. error comes at savebillinginformation, 500 internal server error. firebug trace- POST saveBilling domain.com/checkout/onepage/saveBilling 200 OK POST saveShipping domain.com/checkout/onepage/saveShipping 200 OK POST saveShippingMethod domain.com/checkout/onepage/saveShippingMethod 200 OK POST saveBilling domain.com/checkout/onepage/saveBilling 500 INTERNAL SERVER ERROR – nishant Apr 5 '11 at 8:35
I was able to reproduce the error at saveshippingmenthod too. So problem might be with any of the step. – nishant Apr 5 '11 at 9:01
on further update- I was able to digg down into savebillingaction, saveshippingaction functions in onepagecontroller.php and found that error comes when $this->getRequest()->isPost() is blank , If it is 1 then it goes ahead, and goes to the next step else it redirects to cart, No I dont know why this is not 1 or is it because ajax is not able to send post data but I checked XHR request, Ajax send the post data every time. Could you tell me Which functions are called before and after these savebillingAction, saveShippingAction so that I can have a look at them. – nishant Apr 5 '11 at 13:13
@joseph-mastey Thanks. How can I debug 500 internal server error in One page checkout Ajax calls.XHR request post the data but I think It doest't go to OnePageController.php and $this->getRequest()->isPost() condition become false, response body comes blank. – nishant Apr 6 '11 at 5:55
feedback

Your Answer

 
or
required, but never shown

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