Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

checkout_process.php


Sand Daddy

Recommended Posts

Posted

<?php
 if (isset($$payment->form_action_url)) {
$form_action_url = $$payment->form_action_url;
 } else {
$form_action_url = tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL');
 }

 echo tep_draw_form('checkout_confirmation', $form_action_url, 'post');

 if (is_array($payment_modules->modules)) {
echo $payment_modules->process_button();
 }

 echo tep_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER) . '</form>' . "\n";
?>

 

I need to know if anyone spots an issue with the above code. The checkout runs smooth untill it comes down to the confirm order link. Once clicked all the user gets is a blank page and the order never takes place. The page exists and is in the same dir. Never had an issue until recently.

Archived

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

×
×
  • Create New...