i used below code(php) even then also payFast not receiving the header 200 from notify_url Please suggest me solution, sharing the code
public function notify() {
header( 'HTTP/1.0 200 OK' );
flush();
$pfData = $_POST;
if($pfData['payment_status'] == 'COMPLETE')
{
}
}
payFast not receiving the header 200 from notify_url.Any solution for this why PastFast not receiving header 200 even i added header( 'HTTP/1.0 200 OK' ); flush();
enter code here