I write integrator to Pauy payment system. When I bay sth payu response me with status order. When I recive this I have to use
header("HTTP/1.1 200 OK");
To stop response from payu.
But I don't know How to use it inside cakephp 2.x Controller?
I try:
$this->response->header("HTTP/1.1", "200 OK");
and
$this->response->statusCode(200);
But it's not work.