Magento is redirecting to cart when continuing from Billing info - magento

Whenever I add an item to the cart, then checkout, I choose register or checkout as guest. Then I enter the billing information and click continue. It always redirects back to the cart. I have not been able to figure out why.
Example is here: http://38.98.53.62
Thanks

Thank you for posting the address, it makes it a lot easier to see.
On clicking continue there is an AJAX request which comes back with an error. The checkout javascript jumps back to a predetermined failureUrl on a server error which is what you are seeing. The error message will most likely be stored in var/report so go look at the most recent file there and see what the problem is. Update your question with it if you're still stuck.
P.S.
You have the following in your theme:
$.noConflict();
jQuery.noConflict();
The first of the two lines causes an error and is superfluous anyway, it is not related to the checkout problem but it doesn't do to tempt fate.

Hope this works for you, basically have mcrypt installed. Apparently it’s needed for the password encryption to function. And when it doesn’t, the logic flow gets confused.
Use the Magento check php to see if your server has all the software,

Related

Getting Protoype Error in Magento Checkout Onepage

I have read and searched through site about the prototype error I am getting during checkout on our site.
What is happening is that when onepage goes to the shipping methods part the display is showing none. after reading through other questions usually the prototype error is from a jquery.no conflict issue. I have exhausted that option and don't believe it is the issue. I am hoping there is something else for me to try.
Our issue is here https://rmi-online.com/checkout/onepage/
Everything works fine until you click continue on billing info and it goes to shipping method. Then it is just blank. This is painful because noone can place an order with the site. The frustrating issue is that it was working correctly but now it doesn't for some reason. I can't figure out what changed.

How can I generate an error in magento to fail checkout?

I'm a magento front-end developer and I need to style the failed checkout page, but I don't know how to get to it, anyone?
After following the quick core code change shown here
Go to Mage_Checkout_OnepageController::successAction()
Comment the line $session->clear();. Now you can make one order and
refresh the page as often as you like.
for styling the success page, simply put through a test order and once you are on the success page just change the url from /checkout/onepage/success/ to /checkout/onepage/failure/
Don't forget to undo your modification to the core code to avoid the death penalty!

Magento - returns blank / empty success page

I have a problem with the succes page from Magento. Hope somebody can help me with.
What is the problem; The whole site works completely, no errors at all. But when a customer fills in the comple onepage checkout, the customer goes to the payment service provider (PSP) to do their payment. The PSP sends the customer back to {domein}/checkout/onepage/success, which should be right. But... this page is completly empty. I already changed the memory_limit, enabled the developers log, enabled the display_errors in index.php and viewed the log files in Apache. But nothing is shown as error on the page and now errors are shown in the log files.
The orders are processed successfully, so only the displaying is wrong.
Please help with this problem or with a workaround. I need this page to track the affiliates, these need the transactionID and transactionamount.
PS: we use Magento 1.7.0.2, theme ma_housestore and the PSP Buckaroo
In this case, you should Mage log at the start and every few lines after of successAction method, which ensures it's properly called and where it got stuck.
In your case, successAction is not been properly called. Check in Mage/Checkout/controllers/OnepageController.php file you will find success action there.

Magento - Checkout URL doesn't refresh

I'm facing a very strange problem.
AS far as I know, Magento changes the URL at the checkout.
From step 1 to Step 5/6 the URL changes when you go forward or backward. Or if you use continue or the back button, but....
at our installation it stays with "checkout/onepage/" the whole time... It doesn't change.
Does someone has the same problem or does someone got maybe a hint how to solve this problem?
Thank you!
Your istallation is OK!
Different steps at Magento checkout don't have different URLs as whole checkout section is loaded at once (when entering the section) and steps are filled with Ajax.
If you still have any doubts please check the Demo Store from Magento

Magento 'place order' redirects to shopping cart

Every time I try to place an order rather than an order actually being placed I simply get redirected to the shopping cart.
Paypal express works fine however paypal standard payments gets the problem as above.
Lucas
You have to examine the ajax request. You can use Firefox with the "HTTPfox" extension to track the single requests. Just look for the step, where the redirect is executed - and start the http tracker. Then you see the response.
In the response you can see, what went wrong. I've got this error some weeks ago and it printed a full html page (with the report-number you can look up in the var/log/reports folder) or you can see a php error (maybe syntax error or bad sql query for example). If you get a blank page, you have to set the error_reporting to E_ALL.
I thinkk that step is help.
Log into Magento Admin
Hover over "System" Click "Configuration"
On the next page in the left menu under "Advanced"
Under the check "Mage_Paypal" is Enable or Disable. if is Disable then Enable this options.
Then After the paypal is not redirect to paypal site. then please check your template code.
hope this will sure help you

Resources