Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by corbykissler View Post
    I used the option to just secure the cart checkout . . .
    Please describe *exactly* what you mean by this statement.
    .

    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.

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

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by corbykissler View Post
    Where can I find logs on the server for authorize.net?
    If you have enabled Debug Log-to-File, then your Authorize.net logs should appear in your /cache folder, provided the folder's permissions are set to writable.
    .

    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
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Okay - here's an update . . . i went into authorizenet_aim component and modified the email address that the logs were being sent to . .

    got results back from my last transaction . . .it was approved but the MD5 hash gave the following error . . .


    [69] => March 2, 2008, 12:35 am
    [70] => 75.1xx.xxx.xxx
    [71] => f3xxxxxxxxxxxxxxxxxxxxxxxxca
    [Expected-MD5-Hash] => 3XXXXXXXXXXXXXXXXXXF
    [HashMatchStatus] => FAIL

    Names changed to protect the innocent . . .

    I'll try flushing the hash value next - someone else said something about setting it to nothing, updating it, then setting it back . . .

  4. #14
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Last two tests - -


    Transactions being approved . .

    Response Code: 1.
    Response Text: This transaction has been approved.

    but the MD5 Expected values changed both times .. . while line 71 stayed the same . .

    Any help is appreciated . . . I'm definitely no expert on zen cart, but is it passing the session value as the hash value? Maybe it's just my version?

  5. #15
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by DrByte View Post
    Please describe *exactly* what you mean by this statement.
    Followed the tutorial for changing the configure.php file . .

    I am using my own signed cert, known working.

    // Define the webserver and path parameters
    define('HTTP_SERVER', 'http://www.YOUR_SHOP.com');
    define('HTTPS_SERVER', 'https://www.YOUR_SHOP.com');
    define('ENABLE_SSL', 'true');

    And then I thought I saw somewhere, a setting where SSL can be enabled just for the checkout process, so I flipped that switch until I get the "real" cert installed.

    Man you have fast replies!

  6. #16
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by DrByte View Post
    If you have enabled Debug Log-to-File, then your Authorize.net logs should appear in your /cache folder, provided the folder's permissions are set to writable.
    Thanks - will check that area out.

    Hmmm, lots of logs . . . :)

    Let's see . . .transactions are all getting approved . . so

    Response Code: 1.
    Response Text: (TESTMODE) This transaction has been approved.



    [0] => Response from gateway
    [1] => 3
    [2] => 0
    [3] => 0
    [4] => (TESTMODE) Unknown error.


    This was one of the early errors.

    All of my latest transactions are getting approved, so the cart appears to be communicating with Authorize.net.

    So, here's a question. How long can the API Login be, or does it matter?

  7. #17
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Authorize.net NOT WORKING for me!!

    The API login and transaction key are provided by Authorize.net. Zen Cart doesn't care about their length.
    The MD5 hash has a max limit of 20 chars allowed on the Authorize.net side. Zen Cart will take whatever you give it ... but of course, you must use the same as what's on the Authorize.net side.


    The MD5 hash value being compared is calculated from a number of portions of the transaction, including the transaction amount, your account name, transaction id, and your supplied MD5 phrase. Thus it's different for each transaction.
    .

    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.

  8. #18
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by DrByte View Post
    The API login and transaction key are provided by Authorize.net. Zen Cart doesn't care about their length.
    The MD5 hash has a max limit of 20 chars allowed on the Authorize.net side. Zen Cart will take whatever you give it ... but of course, you must use the same as what's on the Authorize.net side.


    The MD5 hash value being compared is calculated from a number of portions of the transaction, including the transaction amount, your account name, transaction id, and your supplied MD5 phrase. Thus it's different for each transaction.

    Hmm, this is a really tough problem then. Any way to disable the hash error checking (at least the message).

    The charges appear to be going through to the merchant and being approved.

    I've checked the md5 values on both sides multiple times and changed them multiple times - they match. I'm wondering if I remove the AIM module and reinstall it with all the fresh settings . . .



    Thanks again for your reply - don't know how you do it.

  9. #19
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by corbykissler View Post
    Hmm, this is a really tough problem then. Any way to disable the hash error checking (at least the message).

    The charges appear to be going through to the merchant and being approved.

    I've checked the md5 values on both sides multiple times and changed them multiple times - they match. I'm wondering if I remove the AIM module and reinstall it with all the fresh settings . . .



    Thanks again for your reply - don't know how you do it.

    Okay - update 1

    In my admin settings - the curl proxy status was set to true with no value in the ip address. so I set CURL to false. Same result - Hash Error.

    Update 2 - Went to authorize and made sure the web URL was represented correctly in the business information. Same result - Hash Error.



    Going to uninstall and reinstall the module . . . . back in a bit.

    Next step is to just disable the error message - saw somewhere someone did it through application_top.php . . .not recommended but I have 50k in sales over the next 2 months to book.

  10. #20
    Join Date
    Feb 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: Authorize.net NOT WORKING for me!!

    Quote Originally Posted by corbykissler View Post
    Okay - update 1

    In my admin settings - the curl proxy status was set to true with no value in the ip address. so I set CURL to false. Same result - Hash Error.

    Update 2 - Went to authorize and made sure the web URL was represented correctly in the business information. Same result - Hash Error.



    Going to uninstall and reinstall the module . . . . back in a bit.

    Next step is to just disable the error message - saw somewhere someone did it through application_top.php . . .not recommended but I have 50k in sales over the next 2 months to book.

    Uninstall/Reinstall didn't work . . it's the same has value at authorize.net and zen cart . . .

    GRRRR

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Authorize.Net SIM NOT WORKING
    By rspencer1762 in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 11 Dec 2010, 11:03 PM
  2. Authorize.net module not working properly for me
    By braggweb in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 19 Sep 2008, 09:08 PM
  3. Authorize.Net SIM Module not working right for us
    By chaoscube in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 12 Sep 2008, 09:53 PM
  4. v1.3.6 - My Authorize.net not working
    By SPH in forum Built-in Shipping and Payment Modules
    Replies: 17
    Last Post: 9 Feb 2007, 08:53 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