Jump to content

Gateway Callback - Problem with Redirect after addInvoicePayment


Recommended Posts

I am having a problem with a Redirect after a succesful payment in the Callback file.

If I put a header("Location: $url")

addInvoicePayment()- function, is ignored.

If I put it in front, the redirect works just fine.

I checked the addInvoicePayment and it returns true, so I assume there are no errors, only that there is no redirect.

Anyone has a tip on how to debug/find a solution?

if ($success) {
	addInvoicePayment($invoiceId,$transactionId,$paymentAmount,$paymentFee,$gatewayParams['name']);
	header("Location: ".$CONFIG['SystemURL']."/viewinvoice.php?id=$invoiceId&paymentsuccess=true");
	exit();
}

 

header location on top of addInvoice() works fine (I am aware the flow below makes no sense!).

if ($success) {
	header("Location: ".$CONFIG['SystemURL']."/viewinvoice.php?id=$invoiceId&paymentsuccess=true");
	exit();	
	addInvoicePayment($invoiceId,$transactionId,$paymentAmount,$paymentFee,$gatewayParams['name']);
}

Tested on Php7.4& Whmcs 8.2
Php 8.1 & whmcs 8.8

 

Thank you for any hints/suggestions.

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
Reply to this topic...

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated