Error with mollie payment

Pretty sure your local cacert.pem is outdated. This mostly means you are using an old version of curl.
So you most probably use an old version of InvoicePlane aswell which bringe the old curl version.

Please provide much more infos about your setup

its fixed but now i get the following message after succesvol or canceled payment

Type: Omnipay\Common\Exception\InvalidRequestException
Message: The transactionReference parameter is required

How did you fix that?

Like I said before: :point_up:
otherwise no one can help you

Hello,

I fixed it to uncomment line number 359 in CurlMulti.php

I used version 1.5.11 on an standalone host.
The error:

Type: Omnipay\Common\Exception\InvalidRequestException
Message: The transactionReference parameter is required

came when i did an payment and if the payment is successfull or canceled.
I hope some one can help me.

Uncommenting is mostly not fixing things.
Please update your Servers curl cacert.pem. This will fix it.

I had the latest but still the same error

when using payment gateways i run into this error. when making calls to mollie you create a session which later generates a transaction reference which is used to check against if a payment really happened…

I have read the solution…

but where must i set this:

$transactionReference = $_POST['id'];  //coming from webhook

$response = $gateway->completePurchase(
    array(

        'transactionReference'   => $transactionReference,

    )
)->send();

if ($response->isSuccessful()){
     //...
}

i didn’t take a look at the payment gateways inside invoiceplane, i just wanted to point out towards this problem…

edit:
quick look here: