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.
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.
**ITF
"I understand now. The circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are." - MewTwo
There's no need to activate COD if you're not using it.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
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.![]()
**ITF
"I understand now. The circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are." - MewTwo
Did you try by using the moneyorder module instead, as I suggested earlier?
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
**ITF
"I understand now. The circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are." - MewTwo
Compare everything against original files: http://www.zen-cart.com/wiki/index.p...Obscure_Issues
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
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
**ITF
"I understand now. The circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are." - MewTwo
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...
Thanks!![]()
**ITF
"I understand now. The circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are." - MewTwo
Bookmarks