Jump to content
  • 0

Stripe Australia Support And 3D Secure For Payflow


shazde

Question

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.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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.

Link to comment
Share on other sites

  • 0

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).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...