Page 6 of 14 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 131
  1. #51
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    I don't know if this is really a bug or not. When checking out as a guest (using One-Page Checkout), there is a saved card. It's the card of the store owner so I assume adding while she was testing things out.

    In the admin, I see I can remove the card: https://prnt.sc/t97dz8

    But my concern is will all cards be saved if a customer checks out as a guest for future guest orders to see?

  2. #52
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Send question, when my client authorizes the charges the regular a.net plugin would post the results as a status update with details: https://prnt.sc/t9b1th

    With the new plugin, there is no order status update. Without this, she does not have a record on the order of when the funds where captured.

    https://prnt.sc/t9b1th

  3. #53
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by jeking View Post
    Send question, when my client authorizes the charges the regular a.net plugin would post the results as a status update with details: https://prnt.sc/t9b1th

    With the new plugin, there is no order status update. Without this, she does not have a record on the order of when the funds where captured.

    https://prnt.sc/t9b1th
    sorry for the delayed response. very busy right now...

    all of this information is stored in table. i do NOT store it in the comments table.

    perhaps there is a notifier missing in her 156a implementation. does she not see something that looks the attachment here:

    https://www.zen-cart.com/attachment....93569625&stc=1

    i do see the necessary notifier NOTIFY_ADMIN_ORDERS_PAYMENTDATA_COLUMN2 is part of v156a.... as far as i can tell....

    i will be looking at the other issue when i have a bit more time.
    Attached Images Attached Images  
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  4. #54
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by carlwhat View Post
    sorry for the delayed response. very busy right now...

    all of this information is stored in table. i do NOT store it in the comments table.

    perhaps there is a notifier missing in her 156a implementation. does she not see something that looks the attachment here:

    https://www.zen-cart.com/attachment....93569625&stc=1

    i do see the necessary notifier NOTIFY_ADMIN_ORDERS_PAYMENTDATA_COLUMN2 is part of v156a.... as far as i can tell....

    i will be looking at the other issue when i have a bit more time.
    Thanks for the reply. Checking the order, the table you show is completely empty: https://prnt.sc/t9ri90

    I also see the notifier in the ADMIN/orders.php

  5. #55
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by jeking View Post
    Thanks for the reply. Checking the order, the table you show is completely empty: https://prnt.sc/t9ri90

    I also see the notifier in the ADMIN/orders.php
    you look to have multiple conflicting payment modules going on as far as i can tell from your screenshot.

    there is no expiration date above the table for the credit card. my module does not work that way... (as far as I can tell)

    you also look to have hitting this code in the orders.php script (line 580 in v156):

    PHP Code:
    if (is_object($module) && method_exists($module'admin_notification')) { 
    my module does NOT have an admin_notification method.

    if you look at your mysql database are there any records in the authorize_cim_payments table? and if so, what are the values for the orders_id?

    in looking at this thread, she was previously able to capture transactions. i believe there had to be records in this table. so what has happened to this table now?
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  6. #56
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    I'm so sorry. The previous screen shot was the wrong order. It was the 'before' order. The after order does have the data in the table:
    https://prnt.sc/t9v6sn

    Having said that, the data in the table is the authorization. It does not show the capture data. The Capture button is missing so an indication it was captured. My client is looking to know the date of the capture.

    Checking the authorize_cim_payments table, I see the same single entry.
    Last edited by jeking; 1 Jul 2020 at 03:54 PM.

  7. #57
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by jeking View Post
    I'm so sorry. The previous screen shot was the wrong order. It was the 'before' order. The after order does have the data in the table:
    https://prnt.sc/t9v6sn

    Having said that, the data in the table is the authorization. It does not show the capture data. The Capture button is missing so an indication it was captured. My client is looking to know the date of the capture.

    Checking the authorize_cim_payments table, I see the same single entry.
    that data is available.

    if there is additional demand for knowing when the capture happened; i will add that to the table. but right now, clients making additional requests are fine; but they are not, to me, a bug. i currently only provide the date of authorization. i will think about adding the capture date in a future release of the module.

    Quote Originally Posted by jeking View Post
    I don't know if this is really a bug or not. When checking out as a guest (using One-Page Checkout), there is a saved card. It's the card of the store owner so I assume adding while she was testing things out.

    In the admin, I see I can remove the card: https://prnt.sc/t97dz8

    But my concern is will all cards be saved if a customer checks out as a guest for future guest orders to see?
    with regards to this situation, i have not had an opportunity to look at it closely. from what i remember, if one checks out as a guest, i thought i did not save the credit card data. i specifically remember looking at that and having input from the author of OPC on that.

    again, i will take a look when i can.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #58
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by carlwhat View Post
    that data is available.

    if there is additional demand for knowing when the capture happened; i will add that to the table. but right now, clients making additional requests are fine; but they are not, to me, a bug. i currently only provide the date of authorization. i will think about adding the capture date in a future release of the module.
    I would agree it's not a bug so good with a feature request for a future release. Thanks.

    Quote Originally Posted by carlwhat View Post
    with regards to this situation, i have not had an opportunity to look at it closely. from what i remember, if one checks out as a guest, i thought i did not save the credit card data. i specifically remember looking at that and having input from the author of OPC on that.

    again, i will take a look when i can.
    I'll see if I can do some testing to confirm what we see here. For now, I'll delete the saved card from the Guest account.

  9. #59
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by jeking View Post
    I don't know if this is really a bug or not. When checking out as a guest (using One-Page Checkout), there is a saved card. It's the card of the store owner so I assume adding while she was testing things out.

    In the admin, I see I can remove the card: https://prnt.sc/t97dz8

    But my concern is will all cards be saved if a customer checks out as a guest for future guest orders to see?
    Quote Originally Posted by carlwhat View Post
    with regards to this situation, i have not had an opportunity to look at it closely. from what i remember, if one checks out as a guest, i thought i did not save the credit card data. i specifically remember looking at that and having input from the author of OPC on that.

    again, i will take a look when i can.

    best.
    This is continuing to happen. And today got the error "ERROR invalid response Customer: 22186 E00042 You cannot add more than 10 payment profiles"

    I saw saved credit cards again on the Guest account, which is ID 22186. I deleted them so should buy some time.

  10. #60
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by jeking View Post
    This is continuing to happen. And today got the error "ERROR invalid response Customer: 22186 E00042 You cannot add more than 10 payment profiles"

    I saw saved credit cards again on the Guest account, which is ID 22186. I deleted them so should buy some time.
    i am working on a new release of this most excellent, IMO (inherently biased), payment module. it should address all bugs documented by you and verified by me. including the verified bugs associated with guest checkout.

    thanks for pointing them out.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 6 of 14 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. v155 Saving Credit Card Info with Authorize.Net
    By magneto in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 25 Jan 2021, 10:28 PM
  2. v154 Having Issues With Duplicate Transactions in Authorize.net
    By CSGODeimos in forum General Questions
    Replies: 1
    Last Post: 27 Sep 2017, 02:53 PM
  3. v151 Duplicate transactions authorize.net AIM
    By badarac in forum Built-in Shipping and Payment Modules
    Replies: 9
    Last Post: 9 Aug 2016, 03:52 PM
  4. Replies: 1
    Last Post: 31 May 2006, 05:06 PM

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