You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
We had the same issue, but found a solution.
It looks like Prestashop is clearing the output buffer when generating PDFs, and we had configured the "payment accepted" status change, so that an email is sent with the invoice attached. The output from the status script was then cleared and payone did not receive a correct answer. In the end, payone tried updating the status over and over again.
Our solution is a small change in the status.php of the fcpayone plugin, in the process() function, move the echo to the end, just before the exit:
public function process()
{
$this->saveTransaction();
$this->handleOrderState();
$this->handleForwarding();
echo 'TSOK';
exit;
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Prestashop 1.7.7.5
Module Version 2.0.8
We have set up the module like supposed in the documentation.
But payone orders keep getting status updates.
Why?
The text was updated successfully, but these errors were encountered: