jcromero Posted April 6, 2008 Posted April 6, 2008 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.
Guest Posted April 6, 2008 Posted April 6, 2008 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.