• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Stripe Payment CVC number with leading zero

Stripe Payment CVC number with leading zero 6 years 1 month ago #37970

  • w2kd
  • w2kd's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 13
  • Thank you received: 1
We are getting errors with the stripe payment such as below for some Customers
Error
Your card's security code is incorrect.


After a lot of investigation I believe that there is a coding error in plugins/system/rseprostripe/rseprostripe.php line 230
$cvc = $data->getInt('cc_ccv'); as this truncates the leading zero.
it should be
$cvc = $data->getString('cc_ccv');
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!