Page 5 of 13 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 128
  1. #41
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

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

    I thought I probably misunderstood. I also now realize the file I mentioned is a storefront file so completely irrelevant. :-)

    https://prnt.sc/swtsgm
    3.3.1

  2. #42
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    ok i think i found the problem. lets look at this file:

    YOUR_ADMIN/includes/footer.php

    the notifier was added AFTER v156a. modify that file so the the end of the file is as follows:

    PHP Code:
      </div>
    </footer>
    <?php
    $zco_notifier
    ->notify('NOTIFY_ADMIN_FOOTER_END');
    if your version of that file already has the last line with the $zco_notifier, let me know, and we will continue the trouble shooting.

    reload the admin page, and let me know what happens.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  3. #43
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

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

    Quote Originally Posted by carlwhat View Post
    ok i think i found the problem. lets look at this file:

    YOUR_ADMIN/includes/footer.php

    the notifier was added AFTER v156a. modify that file so the the end of the file is as follows:

    PHP Code:
      </div>
    </footer>
    <?php
    $zco_notifier
    ->notify('NOTIFY_ADMIN_FOOTER_END');
    if your version of that file already has the last line with the $zco_notifier, let me know, and we will continue the trouble shooting.

    reload the admin page, and let me know what happens.
    Ding, ding ding. That was it!!

    https://prnt.sc/swviqd

  4. #44
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    Quote Originally Posted by jeking View Post
    Ding, ding ding. That was it!!

    https://prnt.sc/swviqd
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #45
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,549
    Plugin Contributions
    28

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

    Back with a new issue. This same client is reporting that the invoice number is not being recorded at authorize.net. I don't have access so cannot see. Should the invoice number get recorded?

  6. #46
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    Quote Originally Posted by jeking View Post
    Back with a new issue. This same client is reporting that the invoice number is not being recorded at authorize.net. I don't have access so cannot see. Should the invoice number get recorded?
    the client is always right!

    let me take a look.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  7. #47
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    Quote Originally Posted by jeking View Post
    Back with a new issue. This same client is reporting that the invoice number is not being recorded at authorize.net. I don't have access so cannot see. Should the invoice number get recorded?
    jim,
    i was sending the order number in the reference field. it is NOT showing up on my authorize account. it does look like authorize has a different place to add it. i will get a new version out shortly.

    in the interim, if you want to modify the code, on this file: includes/modules/payment/authorizenet_cim.php you can add this on line 980

    PHP Code:
                
                $authorize_order 
    = new AnetAPI\OrderType();
                
    $authorize_order->setInvoiceNumber($this->nextOrderNumber($order->info));
                
    $transactionRequestType->setOrder($authorize_order);

    // next line should be:

                
    $request = new AnetAPI\CreateTransactionRequest(); 
    let me know how that goes.

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

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

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

    Quote Originally Posted by carlwhat View Post
    jim,
    i was sending the order number in the reference field. it is NOT showing up on my authorize account. it does look like authorize has a different place to add it. i will get a new version out shortly.

    in the interim, if you want to modify the code, on this file: includes/modules/payment/authorizenet_cim.php you can add this on line 980

    PHP Code:
                
                $authorize_order 
    = new AnetAPI\OrderType();
                
    $authorize_order->setInvoiceNumber($this->nextOrderNumber($order->info));
                
    $transactionRequestType->setOrder($authorize_order);

    // next line should be:

                
    $request = new AnetAPI\CreateTransactionRequest(); 
    let me know how that goes.

    best.
    Bingo again!!

    She also commented that the description is blank. It used to display the product name. Something you may want to include while you're making updates. ;-)

  9. #49
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    Quote Originally Posted by jeking View Post
    Bingo again!!

    She also commented that the description is blank. It used to display the product name. Something you may want to include while you're making updates. ;-)
    jim,
    there is where she and i go adrift. yes the description is blank, but the description field is for the whole invoice, but just a single line item. with what would you propose i populate that field? i suppose it could say, "Goods from: store_name" and pull the store name from the configuration table. i am open to any ideas.

    as you can see from the attached screenshot, a detailed list of itemized goods is already sent to a.net. perhaps i could do the product description if there is only 1 item on the invoice; but now we are getting into whether that makes sense for others who may make use of the module.

    thoughts?

    Name:  Screenshot from 2020-06-15 14-11-39.png
Views: 115
Size:  28.2 KB
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  10. #50
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,669
    Plugin Contributions
    11

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

    v2.1.1 submitted for review.

    adds invoice number and invoice description to authorize.net receipt and dashboard.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 5 of 13 FirstFirst ... 34567 ... 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