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
Headers defined with $response->header() not sent if buffer length exceedes value defined in ini.output_buffering (4096 by default).
Solution may be setting output_buffering to "On" (unlimited) but it's not always good idea.
I found out that in this case output without headers starts at Klein.php:695 and then it tries to send headers at 706 but fails due to output already happened (headers_sent() == true).
Shouldn't $this->response->send() be called before 694?
The text was updated successfully, but these errors were encountered:
Headers defined with
$response->header()
not sent if buffer length exceedes value defined inini.output_buffering
(4096 by default).Solution may be setting
output_buffering
to"On"
(unlimited) but it's not always good idea.I found out that in this case output without headers starts at Klein.php:695 and then it tries to send headers at 706 but fails due to output already happened (
headers_sent() == true
).Shouldn't
$this->response->send()
be called before 694?The text was updated successfully, but these errors were encountered: