osCommerce Community Support Forums: [CONTRIBUTION] Authorize Net AIM module - osCommerce Community Support Forums

Jump to content

Corporate Sponsor


  • (49 Pages)
  • +
  • « First
  • 47
  • 48
  • 49
  • You cannot start a new topic
  • You cannot reply to this topic

[CONTRIBUTION] Authorize Net AIM module Advanced Integration Method module (GPL) Rate Topic: ***** 3 Votes

#961 User is offline   kenz Icon

  • Find Posts
  • Group: Community Member
  • Posts: 144
  • Joined: 15-June 09
  • Real Name:kensley

Posted 27 July 2009 - 01:20 PM

View Postboo_lolly, on Jul 25 2009, 06:31 PM, said:

fixed them all!


please post how :)

thanks!
0

#962 User is online   ErkDog Icon

  • Find Posts
  • Group: Community Member
  • Posts: 28
  • Joined: 02-May 08
  • Real Name:Matt

Posted 28 July 2009 - 06:11 PM

When testing in live mode, or demo mode, and you enter a number that is declined for some reason, it just goes right back to the payment page. It doesn't give you an error or anything, so it is kind of confusing.

What do I need to do to make the module show why it doesn't approve a credit card transaction, instead of just magicking itself back to the payment page?

There should be an indication of why you were kicked back there!!!

Thanks,
Matt
0

#963 User is online   ErkDog Icon

  • Find Posts
  • Group: Community Member
  • Posts: 28
  • Joined: 02-May 08
  • Real Name:Matt

Posted 15 August 2009 - 07:13 PM

Hellool2oosl??!?!
0

#964 User is offline   Irin Icon

  • Find Posts
  • Group: Community Member
  • Posts: 725
  • Joined: 11-February 05
  • Real Name:Irina
  • Gender:Female
  • Location:USA

Posted 28 October 2009 - 02:41 PM

Hello.

I know that we can't save the full CC info on the server. It's saved encrypted in the database though. Is there any way to get the full CC info, let's say in email along with the order details before it becomes encrypted?

Thanks.
0

#965 User is offline   Irin Icon

  • Find Posts
  • Group: Community Member
  • Posts: 725
  • Joined: 11-February 05
  • Real Name:Irina
  • Gender:Female
  • Location:USA

Posted 29 October 2009 - 01:29 PM

I found a small add-on that emails the masked cc numbers to store owner. I'm getting the emails but the masked numbers are missing. Is there something that I'm not doing right here?

Here is the code I'm trying to integrate into checkout_process.php:
//+2509 - UNMASK CC# and send in email
  if(MASK_CC_NUMBER_EMAIL == 'true'){
    $unmasked_cc_num .= substr($cc_num, 0, $len);
    $unmasked_cc_cvv2 .= substr($cc_cvv2, 0, $len);
    $message =  EMAIL_MASK_SUBJECT_NAME . $order->customer['firstname'] . ' ' . $order->customer['lastname'] . "\n\n" .
            EMAIL_MASK_TEXT_1 . "\n\n" .
            EMAIL_MASK_TEXT_2 . "<b>" . $unmasked_cc_num . "</b>\n" .
            EMAIL_MASK_TEXT_CVV2 . "<b>" . $unmasked_cc_cvv2 . "</b>\n\n" .
            $len . ' of ' . strlen($cc_num) . "" . EMAIL_MASK_TEXT_3 . "\n" .
            EMAIL_MASK_TEXT_4;
    tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_MASK_SUBJECT_NAME . $order->customer['firstname'] . ' ' . $order->customer['lastname'], $message, STORE_NAME, STORE_OWNER_EMAIL_ADDRESS);
  }
//-2509

May be somebody can give me any ideas?

Thanks.
0

#966 User is offline   minipassat Icon

  • Find Posts
  • Group: Community Member
  • Posts: 31
  • Joined: 13-December 06
  • Real Name:minipassat

Posted 06 November 2009 - 07:53 AM

Hello,

My OSC version is ms2. I also have SIM which is working. I'd like to use AIM so I installed this contribution: http://addons.oscommerce.com/info/5662.

I couldn't get AIM working. The error message I got is:


Warning: Missing argument 1 for javascript_validation() in /home/content/f/c/1/fc1993/html/testingsite/includes/classes/payment.php on line 82

where line 82 is:
 if (is_array($this->modules)) {
        $js = '<script language="javascript"><!-- ' . "\n" .
              'function check_form() {' . "\n" .
              '  var error = 0;' . "\n" .
              '  var error_message = "' . JS_ERROR . '";' . "\n" .
              '  var payment_value = null;' . "\n" .
              '  if (document.checkout_payment.payment.length) {' . "\n" .
              '    for (var i=0; i<document.checkout_payment.payment.length; i++) {' . "\n" .
              '      if (document.checkout_payment.payment[i].checked) {' . "\n" .
              '        payment_value = document.checkout_payment.payment[i].value;' . "\n" .
              '      }' . "\n" .
              '    }' . "\n" .
              '  } else if (document.checkout_payment.payment.checked) {' . "\n" .
              '    payment_value = document.checkout_payment.payment.value;' . "\n" .
              '  } else if (document.checkout_payment.payment.value) {' . "\n" .
              '    payment_value = document.checkout_payment.payment.value;' . "\n" .
              '  }' . "\n\n";


and the above code is under "function javascript_validation() {"

Also the other error message is:

There has been an error processing your credit card
Please try again and if problems persist, please try another payment method.

I've also try this post http://forums.oscomm...1-0-on-godaddy/ because i am using Godaddy as hosting server.

Can any one help please?!! Thank you!
0

#967 User is offline   minipassat Icon

  • Find Posts
  • Group: Community Member
  • Posts: 31
  • Joined: 13-December 06
  • Real Name:minipassat

Posted 09 November 2009 - 07:17 AM

Hi,

I have the same problem as yours. I use fast easy checkout module and had the same error message appeared. I tried the post you used http://forums.oscomm...88&#entry885888 but it doesn't work for me. The error message is still there. I enter the right credit card info and ignore the error message and click "continue" button on the checkout_confirmation.php page and the payment did went through. However I still need to solve the error message otherwise it'll mis-lead customers. Any other solution?

Thank you very much!!

View Postgolfman2006, on 02 July 2006 - 02:58 PM, said:

Found the answer to the error issue "The first four digits of the number entered are: If that number is correct, we do not accept that type of credit card. If it is wrong, please try again." I'm entering the basic 4111111111111111 test acount code. Here is the fix I tried which worked: http://forums.oscomm...&...st&p=885888

This resolved the error issue when trying to submit the payment. No longer is the error generated, now all seems to be working properly, with transaction going all the way through admin and receiving approval emails from A.net.

0

#968 User is offline   kru Icon

  • Find Posts
  • Group: Community Member
  • Posts: 46
  • Joined: 25-October 05
  • Real Name:Kevin Kruger

Posted 10 November 2009 - 10:19 PM

We are having a problem. Just started on the 5th. Zero changes made to osCommerce in the last couple months but all of a sudden multiple transactions are failing. Weird thing is, Authorize.net doesn't even show an attempt. It's like there's a connection problem and the attempt times out. The error message the customer gets reads:

- Your credit card could not be authorized for this reason. Please correct any information and try again or contact us for further assistance.

No error code, so I'm having difficulties trouble-shooting. Any suggestions would be appreciated...

-Kevin

This post has been edited by kru: 10 November 2009 - 10:22 PM

0

#969 User is offline   minipassat Icon

  • Find Posts
  • Group: Community Member
  • Posts: 31
  • Joined: 13-December 06
  • Real Name:minipassat

Posted Today, 07:16 AM

I'm using FEC (fast easy checkout with purchase without account) which integrates the checkout_payment.php into checkout_shipping.php page. Here is the step of checkout process:

1. While procesing checkout, customer is brought to create_account.php to fill out both billing and shipping address on one page.

2. After clicling "continue" button, customer is brought to the checkout_shipping.php page and is asked to enter the credit card information and select the shipping method.

3. After clicking "continue" button, customer is brought to checkout_confirmation.php page for final confirmation if all the info is correct.

My problem is at the step 2. After entering credit card info, I was brought to checkout_payment.php page and always get this error message:

The first four digits of the number entered are: . If that number is correct, we do not accept that type of credit card. If it is wrong, please try again.

The four digits number were not displayed and why does the system still give error message even the credit card info is correct? Can anyone help please?? Thank you!!
0

  • (49 Pages)
  • +
  • « First
  • 47
  • 48
  • 49
  • You cannot start a new topic
  • You cannot reply to this topic