trante
trante

Reputation: 34006

Sending headers in beforeFilter of Controller in CakePHP 2

I have myController which is extended from AppController.
Inside myController::beforeFilter I put this line:

header('HTTP/1.0 401 Unauthorized', true, 401);

But I can't see this data inside response headers.
I don't have any whitespace inside this class neither in AppController.
Where should I look or how can I debug this issue?
Thank you

Upvotes: 1

Views: 1934

Answers (1)

Hoff
Hoff

Reputation: 1772

Instead of using PHP's header function, you'll want to use Cake's:

In AppController::beforeFilter:

$this->header('HTTP/1.0 401 Unauthorized');

Using Cake's built in header function queues the headers and sends them all at once when it's ready. I think your problem is likely because you're outputting a header at the wrong time.

Upvotes: 3

Related Questions