In my modules > order totals
I have these there:
COD Fee
Discount Coupon
Group Discount
Gift Certificates
Low Order Fee
Shipping
Sub-Total
Tax
Total
All of them are activated except for COD... I'll try to enable it and us it.
Printable View
In my modules > order totals
I have these there:
COD Fee
Discount Coupon
Group Discount
Gift Certificates
Low Order Fee
Shipping
Sub-Total
Tax
Total
All of them are activated except for COD... I'll try to enable it and us it.
There's no need to activate COD if you're not using it.
I just remember something that I DID do and could probably cause this..
in the /catalog/includes/modules/payment/
folder, I moved all the modules, except purchaseorder.php and plugnpay_api.php
to /catalog/includes/modules/payment/other
of course I left the folders alone, I just moved the php files except those two.
Sorry, I had just remembered.. Now, I've moved cod.php and moneyorder.php back to the modules/payment/ folder.
Do you think that by moving those files to another directory it caused this error?
I can't really test at the moment... I only have one card and the cart is telling me I've used the same card too many times (6 times x.x) than allowed in the time permitted. :blush:
Did you try by using the moneyorder module instead, as I suggested earlier?
Compare everything against original files: http://www.zen-cart.com/wiki/index.p...Obscure_Issues
modules/classes/order.php differences
Line 620, after $insert_id = $db->Insert_ID();
I took that line out and reuploaded order.phpCode:// BEGIN Super Orders edit
// add CC data as a line item to SO payment system
if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
require(DIR_WS_CLASSES . 'super_order.php');
$so = new super_order($insert_id);
$so->cc_line_item();
}
// END Super Orders edit
Still getting a blank page even when paying with moneyorder
Also, checking the debug tool, each time I get a blank page it gives the same error, order.php line 754
I fixed it...
Using all the methods you've advised me, I found what was wrong.
in the includes/modules/checkout_process.php from line 49 - 62
all of this was missing!
I re-uploaded the original, and everything works fine now.Code:require(DIR_WS_CLASSES . 'order_total.php');
$order_total_modules = new order_total;
$zco_notifier->notify('NOTIFY_CHECKOUT_PROCESS_BEFORE_ORDER_TOTALS_PRE_CONFIRMATION_CHECK');
$order_totals = $order_total_modules->pre_confirmation_check();
$zco_notifier->notify('NOTIFY_CHECKOUT_PROCESS_BEFORE_ORDER_TOTALS_PROCESS');
$order_totals = $order_total_modules->process();
$zco_notifier->notify('NOTIFY_CHECKOUT_PROCESS_AFTER_ORDER_TOTALS_PROCESS');
if (!isset($_SESSION['payment']) && !$credit_covers) {
zen_redirect(zen_href_link(FILENAME_DEFAULT));
}
I don't quite remember exactly why those were deleted how/who did it.
Thank you for guiding me through this every step, without your help I'd be stuck for days beyond this... :frusty:
Thanks! :smile: