Jump to content
  • 0

Stripe Australia Support And 3D Secure For Payflow


Question

Posted

Hi,

 

Stripe is available in Australia although not publicly available to everyone. Unfortunately it seems the plugin here does not support AUD.

My first question is how easy would it be to add AUD to stripe plugin?

 

My second question is regarding payflow pro plugin: Does payflow pro plugin supports 3D Secure (the whmcs one does) as I do not see any place to type in the 2 extra parameter needed for 3D secure.

 

Thank you.

3 answers to this question

Recommended Posts

  • 0
Posted

1) Stripe:
 
Go to: /components/gateways/merchant/stripe_gateway/
 
And then edit stripe_gateway.php
 
Find:


	/**
	 * Return all currencies supported by this gateway
	 *
	 * @return array A numerically indexed array containing all currency codes (ISO 4217 format) this gateway supports
	 */
	public function getCurrencies() {
		return array("CAD", "EUR", "GBP", "USD");
	}

Replace with:

	/**
	 * Return all currencies supported by this gateway
	 *
	 * @return array A numerically indexed array containing all currency codes (ISO 4217 format) this gateway supports
	 */
	public function getCurrencies() {
		return array("CAD", "EUR", "GBP", "USD", "AUD");
	}

2) PayFlow Pro

I'm sorry I don't know the answer to this one as I don't use it.

  • 0
Posted

Blesta doesn't support 3D secure at this time, and currently has no plans to do so. Feel free to make a feature request.

 

Our current stance is that 3D secure is poor solution to card verification. Card security codes (CVV) pretty much solve the issue, and the future of payment processing is moving in the direction of the merchant never seeing or touching card numbers (leaving that task with the gateway entirely).

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...