Closed acidjames closed 10 years ago
I noticed the same problem with the value "EUROCARD_MASTERCARD" in "PBX_TYPECARTE" parameters that trigger an error. It seems that the credentials of the test account have changed.
Removing this parameter trigger the display of an additional step where you have to choose your card type. This is the normal behavior as explained in the Paybox's documentation.
I called Paybox's support and it actually where a change in this parameter's value. It's no more possible to have multiple values comma separated in it.
To allow all cards types the value is now : 'PBX_TYPECARTE' => 'CB'
And it is still possible to limit allowed cards type to visa or mastercard with : 'PBX_TYPECARTE' => 'VISA' 'PBX_TYPECARTE' => 'EUROCARD_MASTERCARD'
Hi all,
I'm using sf2.4 and i've been trying to make this bundle work with the paybox test parameters.
So, if you want to test your environment, here are the parameters i've been using :
app/config/config_dev.yml
YourBundle/Controller/DefaultController.php or whatever
For some reason, the bundle documentation uses : 'PBX_TYPECARTE' => 'CB,VISA,EUROCARD_MASTERCARD',
Leads to this error :
But it doesn't work with the paybox test parameters, so i've changed the line to : 'PBX_TYPECARTE' => 'CB',
This works. If you comment this line, you'll be prompted with a batch of payment methods (debit card, paypal, etc)