Page 1 of 2 12 LastLast
Results 1 to 10 of 19
  1. #1
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default ZC orders with no Authorize.net processing??

    This is a very strange issue. So far I found the following...

    Some ZC orders come through and state credit card payment method with no card number, type etc...

    No Authorize.net transaction info either declined or approved. Just nothing.

    No debug info in cache for AIM also just not there. So it doesn't even attempt to contact Authorize.net

    Majority of orders work fine only a small number has this happen and it appears random.

    I am using 1.3.8 with super orders module. Here is my curltest.php info

    CURL Test Page
    This page is intended for testing CURL behaviour. You should be accessing this page via CURLTEST.PHP running on YOUR server.


    You submitted the following fields and data:
    Array
    (
    [field1] => This is a test
    [statuskey] => ready
    )
    Data validation
    Good
    Other Info

    Array
    (
    [url] => "http://www.zen-cart.com/testcurl.php"
    [content_type] => text/html
    [http_code] => 200
    [header_size] => 139
    [request_size] => 174
    [filetime] => -1
    [ssl_verify_result] => 0
    [redirect_count] => 0
    [total_time] => 0.123527
    [namelookup_time] => 0.115204
    [connect_time] => 0.116012
    [pretransfer_time] => 0.116035
    [size_upload] => 0
    [size_download] => 2140
    [speed_download] => 17324
    [speed_upload] => 0
    [download_content_length] => 0
    [upload_content_length] => 0
    [starttransfer_time] => 0.123507
    [redirect_time] => 0
    )


    Any ideas what this could be. I think it may be card or user specific as one user it does it everytime they order. I am still investigating that though.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: ZC orders with no Authorize.net processing??

    Sounds like you have the Offline Credit Card module enabled, and that's what people are using to place orders. Since that module never contacts the gateway, payment is never received with it. That module is intended for processing cards manually through your own console.
    If you want to use the Authorize.net module, click Remove on the other module(s) you're not using.
    .

    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. #3
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Sounds like it me too and Maybe your right, but I don't understand how that could happen since it is not enabled in the pay modules and it is only for happening for some users. I will login as one of the users in question and see if that is an available option. Thanks

  4. #4
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default Re: ZC orders with no Authorize.net processing??

    If this was just in the past few days and otherwise OK, it -might- have something to do with authorize.net having had a fire in their Seattle datacenter this past weekend. I haven't seen what you describe, but did have some other problems with sites using AIM.

  5. #5
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Ok I just logged in as on of the users that this just happened to yesterday. I placed an order using all there same info except I used 4111111111111 and it declined my card which I verified in the cache directory through the AIM log. So it using the AIM module and not the Offline CC which has been disable from day one. Also would the offline CC module not show any cc info in the ZC order details page, as this is the case in the anomally.

  6. #6
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Thanks for the news, I didn't know that had happened. This has happend only to two of my customers actually. The first was about 2 or 3 weeks ago and it happen to that customer twice back to back which is interesting. I thought is was a fluke so I didn't look into it really. The second was yesterday night and it has my attention now.

    Seems to me that if there was a communication error with authorize, then ZC would decline the order but maybe I assume to much... :)

  7. #7
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Ok here is what I have found...

    I do have super orders 2.0 installed which slightly modifies the orders.php class by adding the following 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

    Other then that the order.php and ordertotal.php classes are stock 1.3.8 Zencart along with checkout_process and the AIM module

    I have found that on the abnormal orders the cc_type, cc_owner, cc _number and cc_cvv info is not being recorded in the orders table. cc_method is recorded however and shows the AIM module as it should. All other data is being recorded as usual. Again this happens on a random basis. I have not found a way to consistently generate this anomaly. Could this be _SESSION related and why isn't any error being thrown out, instead it lets the customer complete the order as if everything was fine...I am stumped...Any help would be appreciated.

    Matt
    Last edited by phatkodi; 14 Jul 2009 at 07:36 PM.

  8. #8
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Also cc_exipres is blank also. Seems that info is not being passed, but when and where I am still trying to figure out.

  9. #9
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: ZC orders with no Authorize.net processing??

    Anyone have any ideas this keeps happening on random orders. It seems as though the cc info variables are not being passed from the order confirmation page. What I don't understand is why is Zencart allowing these to be processes without any AIM confirmation. I am unable to duplicate this for testing. Could this have something to do with Super Orders. Why are some going through and some are not. Any ideas for adding debug code to help figure out the problem.... Please HELLLLLLLLPPPPPP

  10. #10
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: ZC orders with no Authorize.net processing??

    Quote Originally Posted by phatkodi View Post
    What I don't understand is why is Zencart allowing these to be processes without any AIM confirmation.
    I agree. It was never designed to operate that way.
    But without being able to duplicate the exact situation consistently, it's very difficult to come up with a fix.

    I'm still inclined to think that you've got payment modules "installed" but have their settings set to "enabled=false" or have zone restrictions on them ... but somehow one or more of those are getting selected instead of the AIM module. Either that or you've got some customizations installed somewhere that are interfering with the normal checkout activity.
    .

    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Duplicate orders with Authorize.net AIM
    By wk4hm in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 23 Dec 2010, 10:37 PM
  2. Authorize.net - New Processing Requirement
    By jweb1369 in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 21 May 2010, 06:34 AM
  3. Error processing cc transaction with authorize.net
    By keithck73 in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 3 Mar 2009, 10:37 PM
  4. Odd problem with orders and authorize.net
    By rmn in forum General Questions
    Replies: 23
    Last Post: 22 Jul 2008, 09:41 AM
  5. Problem with CC Processing on Authorize.net Module
    By swelter83 in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 31 May 2008, 03:10 PM

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