Page 17 of 19 FirstFirst ... 71516171819 LastLast
Results 161 to 170 of 188
  1. #161
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,248
    Plugin Contributions
    124

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

    In case you see this again, my context is PHP 8.1/ZC 1.5.8.
    It's not the module that gets disabled, it's the card in the customers_cc table. Sorry, should have clarified.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #162
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,248
    Plugin Contributions
    124

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

    In case anyone else is getting mismatches between authorize's invoice number and Zen Cart's order number for orders which are NOT placed at the same time, it may be worth changing includes/modules/payment/authorizenet_cim.php nextOrderNumber() function to do

    $result = $db->Execute("SELECT max(orders_id)+1 AS orders_id FROM " . TABLE_ORDERS . " ORDER BY orders_id");
    $next_order_id = $result->fields['orders_id'];
    return $next_order_id;

    instead of pulling the auto_increment value from SHOW TABLE STATUS.

    The use of max(orders_id) mirrors the "next id prediction" logic used by other parts of Zen Cart, such as the attributes controller and specials/featured product management.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #163
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,248
    Plugin Contributions
    124

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

    At the end of before_process() in authorizenet_cim.php you call chargeCustomerProfile(). Should this be wrapped in a check like

    if ($this->authorizationType != 'Authorize')

    I'm asking because I have configured CIM to Auth Only but it seems to be charging.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  4. #164
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,820
    Plugin Contributions
    9

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

    Quote Originally Posted by swguy View Post
    At the end of before_process() in authorizenet_cim.php you call chargeCustomerProfile(). Should this be wrapped in a check like

    if ($this->authorizationType != 'Authorize')

    I'm asking because I have configured CIM to Auth Only but it seems to be charging.
    scott,
    I am really trying to understand your question. I suppose I could understand it if it was coming from a store owner with limited coding experience. but as you are one of the big machers in ZC, I do not understand it.

    in a word:

    NO.

    I would suggest looking at the code. and then looking at it again.

    $this→authorizationType gets initialized to `Authorize`. and then it does not get changed and or used until the method (chargeCustomerProfile) that you are asking to not be called.

    I could go on. and on. but I will not.

    if you would like me to figure out what is happening on your clients site with regards to this module, I am certainly available for hire.

    this payment module is mature. the ability to authorize only or authorize and capture together has been well established since I initially made this payment module available for community use.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

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

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

    for those of you using this most excellent payment module, and who read this post; and then breathed a sigh of relief; that post is not applicable to this payment module.

    this payment module WILL require an update to the new certificates to continue working after the cutoff date.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

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

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

    Quote Originally Posted by carlwhat View Post
    for those of you using this most excellent payment module, and who read this post; and then breathed a sigh of relief; that post is not applicable to this payment module.

    this payment module WILL require an update to the new certificates to continue working after the cutoff date.

    best.
    Thank you for clarifying. I assumed the opposite, of course.

    Will you make an updated version available?

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

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

    Quote Originally Posted by jeking View Post
    Thank you for clarifying. I assumed the opposite, of course.

    Will you make an updated version available?
    i am now unclear as to whether the cert file will need to get replaced. it is a definite maybe...

    in any event, i will be supporting this module for whatever needs to get done. i am still working out some of the details.

    and i am following the situation rather closely.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #168
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,248
    Plugin Contributions
    124

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

    Thanks for taking care of this, @carlwhat.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  9. #169
    Join Date
    May 2008
    Location
    United States
    Posts
    454
    Plugin Contributions
    1

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

    Quote Originally Posted by carlwhat View Post
    i am now unclear as to whether the cert file will need to get replaced. it is a definite maybe...

    in any event, i will be supporting this module for whatever needs to get done. i am still working out some of the details.

    and i am following the situation rather closely.

    best.
    I'm also confused. I'm assuming that the SPK needs to be updated, or at least the PEM file. I checked GitHub for the latest release yesterday, but it hasn't been updated yet.

    https://github.com/AuthorizeNet/sdk-php

    https://github.com/AuthorizeNet/sdk-...master/lib/ssl

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

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

    Quote Originally Posted by marcopolo View Post
    I'm also confused. I'm assuming that the SPK needs to be updated, or at least the PEM file. I checked GitHub for the latest release yesterday, but it hasn't been updated yet.

    https://github.com/AuthorizeNet/sdk-php

    https://github.com/AuthorizeNet/sdk-...master/lib/ssl
    that repo is the source of much consternation...

    this PR has an updated version of the pem file that i have tested and currently works... as to whether it will work on 10/23 is the big question.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 17 of 19 FirstFirst ... 71516171819 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