Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18
  1. #11
    Join Date
    Nov 2008
    Location
    Florida
    Posts
    39
    Plugin Contributions
    0

    Default Re: PlugnPayAPI Checkout Issue?

    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

  2. #12
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: PlugnPayAPI Checkout Issue?

    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.

  3. #13
    Join Date
    Nov 2008
    Location
    Florida
    Posts
    39
    Plugin Contributions
    0

    Default Re: PlugnPayAPI Checkout Issue?

    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

  4. #14
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: PlugnPayAPI Checkout Issue?

    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.

  5. #15
    Join Date
    Nov 2008
    Location
    Florida
    Posts
    39
    Plugin Contributions
    0

    Default Re: PlugnPayAPI Checkout Issue?

    Quote Originally Posted by DrByte View Post
    Did you try by using the moneyorder module instead, as I suggested earlier?
    Yeah, I just tried it. Samething, blank page. That's odd, because it worked before, when I first created the cart!

    Could it be conflicting with the uspsautofill or super orders? There really aren't any other modules I've added than those two.
    **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

  6. #16
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: PlugnPayAPI Checkout Issue?

    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.

  7. #17
    Join Date
    Nov 2008
    Location
    Florida
    Posts
    39
    Plugin Contributions
    0

    Default Re: PlugnPayAPI Checkout Issue?

    modules/classes/order.php differences
    Line 620, after $insert_id = $db->Insert_ID();

    Code:
    // 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
    I took that line out and reuploaded order.php
    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

  8. #18
    Join Date
    Nov 2008
    Location
    Florida
    Posts
    39
    Plugin Contributions
    0

    Default Re: PlugnPayAPI Checkout Issue?

    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!
    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 re-uploaded the original, and everything works fine now.
    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

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Checkout Issue
    By Bruce1952 in forum General Questions
    Replies: 6
    Last Post: 25 Sep 2011, 02:28 PM
  2. Checkout Issue
    By pyrobri in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 26 May 2007, 07:34 PM
  3. CheckOut Issue
    By LilleyPadGifts in forum Basic Configuration
    Replies: 1
    Last Post: 31 Jan 2007, 11:52 PM
  4. Checkout Issue
    By Prellyan in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 30 Aug 2006, 05:38 PM
  5. Checkout Issue
    By directioninvestments in forum General Questions
    Replies: 5
    Last Post: 26 Jun 2006, 05:04 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR