Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can run the process checkout_process.php


jcromero

Recommended Posts

Posted

I create a new process to do pays with credit cards, but this process run a form out of my site of ecommerce, when return the answer of my bank if the answer is aproved I need to run the process checkout_process.php to empy my cart shipping and create the new order.

 

Please help me.

Posted

Payments are usually handled with a module (catalog/includes/modules/payment/...). When an order is places the information is already unregisterd with the checkout_process.php

 

  $cart->reset(true);

// unregister session variables used during checkout
 tep_session_unregister('sendto');
 tep_session_unregister('billto');
 tep_session_unregister('shipping');
 tep_session_unregister('payment');
 tep_session_unregister('comments');

 

 

I think you are trying to reinvent the wheel. Have you looked at the contribtions section to see if any of them fit your needs. There are 689 of them, I am sure one will come close.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...