How to enable file download without completely buffering the file in memory?
so instead of
// insert headers here ...
$data = file_get_contents($filename);
$this->response->setContent($data);
$this->response->send()
something like
// insert headers here ...
$this->response->setRawOutputModeFunctionWhichDoesNotExist(true);
readfile($filename)